diff options
Diffstat (limited to 'xsh')
-rwxr-xr-x | xsh | 11 |
1 files changed, 3 insertions, 8 deletions
@@ -54,11 +54,6 @@ done # FIXME: needs shell wrapper (provided by SSH but not in local use) [ -z "$V" ] || set -- "$@"\; sleep 4 -case "$HOST" in - '') - termwrapper "$@" - ;; - *) - termwrapper ssh $ssh_opts $HOST "$@" - ;; -esac +[ -z "$HOST" ] || set -- ssh $ssh_opts $HOST "$@" + +termwrapper "$@" |