diff options
Diffstat (limited to 'subx/drun')
-rwxr-xr-x | subx/drun | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/subx/drun b/subx/drun deleted file mode 100755 index 71b2f0e0..00000000 --- a/subx/drun +++ /dev/null @@ -1,22 +0,0 @@ -#!/usr/bin/env zsh -# Run commonly-used SubX programs using the SubX VM in 'debug mode'. - -if [ $# -eq 0 ] -then - echo "Usage: $0 <binary name without directory> <args>" - echo - echo "Naming convention: Binaries starting with 'ex' will be assumed to live in examples/" - echo "Other binaries will be assumed to live in apps/" - exit 1 -fi - -case $1 in - ex*) - ./subx --debug --trace run examples/$* - exit $? - ;; - *) - ./subx --debug --trace run apps/$* - exit $? - ;; -esac |