• R/O
  • SSH
  • HTTPS

提交

标签
No Tags

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

Commit MetaInfo

修订版8 (tree)
时间2020-05-15 18:16:47
作者gdisirio

Log Message

Artwork updates.

更改概述

差异

--- trunk/bin/dotpng.sh (nonexistent)
+++ trunk/bin/dotpng.sh (revision 8)
@@ -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