7 lines
91 B
Bash
Raw Normal View History

#!/bin/bash
for file in $(find -name *.dot);
do
dot -Tpng $file -o $file.png;
done