iced-mobile/docs/graphs/generate.sh
2019-11-20 05:01:36 +01:00

7 lines
85 B
Bash
Executable File

#!/usr/bin/env bash
for file in *.dot
do
dot -Tpng ${file} -o ${file%.*}.png
done