#!/bin/bash
#
-# simple autossh and screen wrapper
+# Simple autossh and screen wrapper.
#
BASENAME="`basename $0`"
if [ "$BASENAME" == "shells" ]; then
# Remote screen shell using autossh
- #
- # We're setting TERM for compatibility with older systems without rxvt-unicode-256
- # support, see https://bbs.archlinux.org/viewtopic.php?id=50647
if [ "$COMMAND" == "root" ]; then
- autossh $DEST -t -- TERM=rxvt sudo screen -x
+ autossh $DEST -t -- sudo screen -x
else
- autossh $DEST -t -- TERM=rxvt screen -x $COMMAND
+ autossh $DEST -t -- screen -x $COMMAND
fi
else
if [ -z "$COMMAND" ] && screen -ls $DEST | grep -q "There is a screen on"; then