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