aboutsummaryrefslogtreecommitdiff
path: root/colorgrid/tk2c.bash
diff options
context:
space:
mode:
authorlluís gómez i bigordà <lluisbigorda@users.sourceforge.net>2008-05-23 20:46:28 +0000
committerlluís gómez i bigordà <lluisbigorda@users.sourceforge.net>2008-05-23 20:46:28 +0000
commita8f804837c21d71a6fa5adc127d9b64eb23c47ad (patch)
treec36a4a759da03c03f12d20fbed31b9f391b95263 /colorgrid/tk2c.bash
parentef9eed1eaa214df28cb65e51f1cdd8c01f33e1f5 (diff)
changed the code to be in a single file colorgrid.c
moved the help patch to a more common name svn path=/trunk/externals/pdvjtools/; revision=9871
Diffstat (limited to 'colorgrid/tk2c.bash')
-rwxr-xr-xcolorgrid/tk2c.bash24
1 files changed, 0 insertions, 24 deletions
diff --git a/colorgrid/tk2c.bash b/colorgrid/tk2c.bash
deleted file mode 100755
index 9dfeb03..0000000
--- a/colorgrid/tk2c.bash
+++ /dev/null
@@ -1,24 +0,0 @@
-#!/bin/bash
-
-#set -x
-
-while read line
-do
- for word in $line
- do
- if [ "X"$word != "X"${word#\#} ]
- then
- echo // ${line#\#}
- break
- else
- line=${line//\'/\\\'}
-#useless, slashes never gets in
- line=${line//\\/\\\\}
-#this one's dirty, i know
- line=${line//;/\\\\;}
- line=${line//\"/\\\"}
- echo 'sys_gui("'$line'\n");'
- break
- fi
- done
-done