From: Sergey Matveev Date: Thu, 11 Dec 2025 13:01:14 +0000 (+0300) Subject: Ability to pass additional arguments X-Git-Url: http://www.git.stargrave.org/?a=commitdiff_plain;h=56e0d9deb219923994115a44d2aa5c691884520b;p=dotfiles.git Ability to pass additional arguments --- diff --git a/ssh/.zsh/functions/ssht b/ssh/.zsh/functions/ssht index f747749..1e9b1e7 100644 --- a/ssh/.zsh/functions/ssht +++ b/ssh/.zsh/functions/ssht @@ -1,2 +1,2 @@ local t="-t 0" -ssh -C -t $1 "export LANG=en_US.UTF-8 ; tmux has-session $t && tmux attach-session $t || tmux new-session $t" +ssh -C -t $@ "export LANG=en_US.UTF-8 ; tmux has-session $t && tmux attach-session $t || tmux new-session $t"