summaryrefslogtreecommitdiffstats
path: root/bin/pbjexpand
diff options
context:
space:
mode:
Diffstat (limited to 'bin/pbjexpand')
-rwxr-xr-xbin/pbjexpand19
1 files changed, 0 insertions, 19 deletions
diff --git a/bin/pbjexpand b/bin/pbjexpand
deleted file mode 100755
index ed86301..0000000
--- a/bin/pbjexpand
+++ /dev/null
@@ -1,19 +0,0 @@
-#!/bin/sh
-
-cat $1 | while read op arg
-do
- case "$op" in
- '!')
- expdepth=$((expdepth + 1))
- if [ "$expdepth" -gt 10 ]
- then
- echo 'pbjexpand: depth of 10 recursive macros, aborting.' 1>&2
- exit 1
- fi
-
- export expdepth
- $arg | $0 ;;
- *)
- echo $op $arg
- esac
-done