diff options
Diffstat (limited to 'shell')
-rwxr-xr-x | shell | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -60,7 +60,11 @@ fi window_title $DEST # Shift args -shift 2 +if [ -z "$COMMAND" ]; then + shift +else + shift 2 +fi # Dispatcher if [ "$BASENAME" == "shells" ]; then |