Now you can do:
./run.sh [OPTIONS]
without having to specify a particular program (defaults to
./test/userprog.o).
#
# Runs a simple test (default: ./test/userprog.o)
# Syntax:
-# ./run.sh [gdb]
-# ./run.sh [test program] [gdb]
+# ./run.sh [test program] [OPTIONS]
+# ./run.sh [OPTIONS]
+# ./run.sh [gdb [test program]]
#
# If you include a 'gdb' argument, the your program will be launched with gdb.
# You can also supply a test program argument to run something besides the
#
BIN=./test/userprog.o
+PREFIX=
export LD_LIBRARY_PATH=.
-[ $# -gt 0 ] && [ "$1" != "gdb" ] && BIN=$1 && shift
+[ $# -gt 0 ] && [ "$1" = "gdb" ] && PREFIX=gdb && shift
+[ $# -gt 0 ] && [ -x "$1" ] && [ -f "$1" ] && BIN="$1" && shift
-if [ $# -gt 0 ] && [ "$1" = "gdb" ]; then
- shift
- gdb $BIN $@
-fi
-
-$BIN $@
+$PREFIX $BIN $@