dotfiles/.zsh.d/37-alias-ssh-tmux-attaching

5 lines
114 B
Plaintext

# automatically use tmux whenever we ssh to a server
function ssht(){
ssh $* -t 'tmux a || tmux || /bin/bash'
}