2019-07-24 05:33:28 +00:00
|
|
|
#!/bin/zsh
|
2019-02-18 16:55:05 +00:00
|
|
|
# automatically use tmux whenever we ssh to a server
|
2019-02-04 15:26:23 +00:00
|
|
|
|
2019-07-24 09:32:04 +00:00
|
|
|
function ssht() {
|
2019-07-24 05:33:28 +00:00
|
|
|
ssh "$@" -t 'tmux a || tmux || /bin/bash'
|
|
|
|
}
|