Skip to content

Commit 694a1ee

Browse files
committed
Added script for generating the png images from dots.
1 parent 1496a46 commit 694a1ee

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

urm.sh

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
#!/bin/bash
2+
for file in $(find -name *.dot);
3+
do
4+
dot -Tpng $file -o $file.png;
5+
done
6+

0 commit comments

Comments
 (0)