• R/O
  • SSH
  • HTTPS

Commit

Tags
Aucun tag

Frequently used words (click to add to your profile)

javaandroidc++linuxc#windowsobjective-ccocoaqtpython誰得phprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

Commit MetaInfo

Révision5 (tree)
l'heure2020-05-13 18:23:53
Auteurgdisirio

Message de Log

(empty log message)

Change Summary

Modification

--- trunk/artwork/dotpng.sh (nonexistent)
+++ trunk/artwork/dotpng.sh (revision 5)
@@ -0,0 +1,11 @@
1+#!/bin/bash
2+if [ $# -eq 1 ]
3+then
4+# dot $1.dot -o$1.png -Tpng
5+ echo Generating ${1%.*}.png
6+ dot $1 -o${1%.*}.png -Tpng
7+ echo
8+ echo Done
9+else
10+ echo "Usage: dotpng.sh <dotfile> (without .dot extension)"
11+fi