8 lines
98 B
Bash
Raw Normal View History

#!/bin/bash
2015-09-19 20:21:45 +03:00
set -x
for file in $(find -name *.dot);
do
dot -Tpng $file -o $file.png;
2015-09-19 20:21:45 +03:00
done