aboutsummaryrefslogtreecommitdiff
path: root/grid/tk2c.bash
diff options
context:
space:
mode:
Diffstat (limited to 'grid/tk2c.bash')
-rwxr-xr-xgrid/tk2c.bash24
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