12 lines
237 B
Plaintext
12 lines
237 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
# A name for the session
|
||
|
session_name="$(whoami)_sess"
|
||
|
|
||
|
if [ ! -z $1 ]; then
|
||
|
ssh -t "$1" "tmux attach -t $session_name || tmux new -s $session_name"
|
||
|
else
|
||
|
echo "Usage: sshtmux HOSTNAME"
|
||
|
echo "You must specify a hostname"
|
||
|
fi
|