From 28cb6f2e85d4f110434634b9fc553503e09dbe4e Mon Sep 17 00:00:00 2001 From: Justin Davis Date: Wed, 21 Sep 2011 18:19:03 -0400 Subject: Remove old scripts that are obsolete. --- bin/pbjexpand | 19 ------------------- 1 file changed, 19 deletions(-) delete mode 100755 bin/pbjexpand (limited to 'bin/pbjexpand') 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 -- cgit v1.2.3-24-g4f1b