libabigail/scripts/svg_to_plain_svg.sh

7 lines
152 B
Bash
Executable File

#!/bin/bash
# SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
for i in *.svg;
do inkscape "$i" --export-plain-svg="${i//svg/plain.svg}"
done