ssh_to: connect to a remote tmux via mosh
This commit is contained in:
commit
0e9e12ca74
27
bin/ssh_to
Executable file
27
bin/ssh_to
Executable file
@ -0,0 +1,27 @@
|
||||
#!/bin/bash
|
||||
# Connect to a remote tmux session with mosh, avoiding involuntary nesting
|
||||
#
|
||||
# This script is not intended to be run by itself. To use it, set up a link
|
||||
# to it in your path for each server you want to connect to. The link name
|
||||
# will be used as an ssh destination, so it has to be either a hostname or
|
||||
# an alias definet in your ~/.ssh/config.
|
||||
|
||||
if [[ ! -h $0 ]] ; then
|
||||
echo "Error: this script should never be called directly"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
if [[ $# != 0 ]] ; then
|
||||
echo "Error: this scripts takes no pris^H^H^H^Hparameters"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
MOSH=`command -v mosh`
|
||||
HOST=${0##/*/}
|
||||
|
||||
if [[ ! -z $TMUX ]] ; then
|
||||
echo "Error: tmux session detected, aborting to avoid tmux nesting"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
"${MOSH}" -- "${HOST}" tmux a
|
||||
Loading…
Reference in New Issue
Block a user