summaryrefslogtreecommitdiff
path: root/bin/expand-template
diff options
context:
space:
mode:
Diffstat (limited to 'bin/expand-template')
-rwxr-xr-xbin/expand-template16
1 files changed, 0 insertions, 16 deletions
diff --git a/bin/expand-template b/bin/expand-template
deleted file mode 100755
index 177f73fd61..0000000000
--- a/bin/expand-template
+++ /dev/null
@@ -1,16 +0,0 @@
-#!/bin/sh
-
-# $Id$
-
-SOURCE="$0";
-while [ -h "$SOURCE" ]; do
- LOOKUP="`ls -ld "$SOURCE"`";
- TARGET="`expr "$LOOKUP" : '.*-> \(.*\)$'`";
- if expr "${TARGET:-.}/" : '/.*/$' > /dev/null; then
- SOURCE="${TARGET:-.}";
- else
- SOURCE="`dirname "$SOURCE"`/${TARGET:-.}";
- fi;
-done;
-
-scsh -e main -s "$SOURCE.scm" "$@"