6 lines
128 B
Bash
6 lines
128 B
Bash
#!/bin/zsh
|
|
# automatically use tmux whenever we ssh to a server
|
|
|
|
function ssht(){
|
|
ssh "$@" -t 'tmux a || tmux || /bin/bash'
|
|
}
|