diff --git a/usr/bin/exec-terminal b/usr/bin/exec-terminal index d2fbb0d..85f949c 100644 --- a/usr/bin/exec-terminal +++ b/usr/bin/exec-terminal @@ -1,2 +1,11 @@ #!/usr/bin/bash set -e + +EXEC_TERMINAL=bash + +usage() { + echo "Usage: ${0##*/} [cmd]" + echo ' -s [shell] Change shell to [shell]' + echo ' -h This help' + exit 1 +}