about summary refs log tree commit diff stats
path: root/subx/run
diff options
context:
space:
mode:
Diffstat (limited to 'subx/run')
-rwxr-xr-xsubx/run22
1 files changed, 0 insertions, 22 deletions
diff --git a/subx/run b/subx/run
deleted file mode 100755
index 99de0777..00000000
--- a/subx/run
+++ /dev/null
@@ -1,22 +0,0 @@
-#!/usr/bin/env zsh
-# Run commonly-used SubX programs using the SubX VM.
-
-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 run examples/$*
-    exit $?
-    ;;
-  *)
-    ./subx run apps/$*
-    exit $?
-    ;;
-esac