diff options
author | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2003-08-18 00:09:06 +0000 |
---|---|---|
committer | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2003-08-18 00:09:06 +0000 |
commit | 32705d922efbf40f2befd5fc6355c14151d19866 (patch) | |
tree | d2e64852421cae8fc41fbbd0d44b353bc82fc142 | |
parent | dd29261afadde310856a5f1a1e8aec727f4c6231 (diff) |
removed tk2c.bash since Makefile now uses common version
svn path=/trunk/externals/unauthorized/; revision=878
-rwxr-xr-x | grid/tk2c.bash | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/grid/tk2c.bash b/grid/tk2c.bash deleted file mode 100755 index 9dfeb03..0000000 --- a/grid/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 |