7 lines
91 B
Bash
7 lines
91 B
Bash
#!/bin/bash
|
|
for file in $(find -name *.dot);
|
|
do
|
|
dot -Tpng $file -o $file.png;
|
|
done
|
|
|