28 lines
		
	
	
		
			732 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
		
			732 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #!/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
 |