7 lines
85 B
Bash
7 lines
85 B
Bash
|
|
#!/usr/bin/env bash
|
||
|
|
|
||
|
|
for file in *.dot
|
||
|
|
do
|
||
|
|
dot -Tpng ${file} -o ${file%.*}.png
|
||
|
|
done
|