Skip to content

Instantly share code, notes, and snippets.

@cocomoff
Created July 17, 2019 04:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cocomoff/67ab9dd96fc6af935da0403259a37b00 to your computer and use it in GitHub Desktop.
Save cocomoff/67ab9dd96fc6af935da0403259a37b00 to your computer and use it in GitHub Desktop.
dot-png generator
#!/bin/zsh
for l in `ls output/*.dot`;
do
fname=${l:r}.png;
dot -Tpng $l > $fname;
done;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment