diff options
Diffstat (limited to 'docker-ep.sh')
-rwxr-xr-x | docker-ep.sh | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/docker-ep.sh b/docker-ep.sh index 2f949f5..aa8e8a2 100755 --- a/docker-ep.sh +++ b/docker-ep.sh @@ -58,6 +58,7 @@ function usage() { echo "core - starts voctomix gore" echo "gui - starts the voctomix GUI" echo "examples - lists the example scripts" + echo "bash - run interactive bash" echo "scriptname.py - starts the example script named 'scriptname.py' " } @@ -74,6 +75,10 @@ case $1 in core ) startCore ;; + bash ) + shift + bash $@ + ;; * ) runExample $1 ;; |