mirror of
git://sourceware.org/git/libabigail.git
synced 2024-12-14 05:54:50 +00:00
0357a40af5
* scripts/dot_to_png.sh: Clean up the script according to shellcheck warnings and remarks. * scripts/dot_to_svg.sh: Likewise. * scripts/svg_to_plain_svg.sh: Likewise. * scripts/svg_to_png_and_pdf.sh: Likewise. Signed-off-by: Ondrej Oprala <ondrej.oprala@gmail.com>
6 lines
94 B
Bash
Executable File
6 lines
94 B
Bash
Executable File
#!/bin/bash
|
|
|
|
for i in *.svg;
|
|
do inkscape "$i" --export-plain-svg="${i//svg/plain.svg}"
|
|
done
|