This website requires JavaScript.
Explore
Help
Sign In
gaspersic
/
java-design-patterns
Watch
1
Star
0
Fork
0
You've already forked java-design-patterns
Code
Issues
Pull Requests
Projects
Releases
Wiki
Activity
java-design-patterns
/
urm.sh
8 lines
98 B
Bash
Raw
Normal View
History
Unescape
Escape
Added script for generating the png images from dots.
2015-09-17 19:47:48 +03:00
#!/bin/bash
Update urm.sh
2015-09-19 20:21:45 +03:00
set
-x
Added script for generating the png images from dots.
2015-09-17 19:47:48 +03:00
for
file in
$(
find -name *.dot
)
;
do
dot -Tpng
$file
-o
$file
.png
;
Update urm.sh
2015-09-19 20:21:45 +03:00
done
Reference in New Issue
Copy Permalink