mirror of
git://sourceware.org/git/libabigail.git
synced 2024-12-14 22:14:35 +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>
10 lines
134 B
Bash
Executable File
10 lines
134 B
Bash
Executable File
#!/bin/bash
|
|
|
|
for i in *.gv
|
|
do
|
|
echo "$i"
|
|
outputsvg=${i//gv/svg}
|
|
echo "$outputsvg"
|
|
dot -v -Tsvg:cairo -o "$outputsvg" "$i"
|
|
done
|