ssh-compat script; bash is horrifying, but beautiful

This commit is contained in:
Von Random 2018-06-25 18:38:42 +03:00
parent b2d4543bc6
commit bf8d42b465

8
ssh-compat Executable file
View file

@ -0,0 +1,8 @@
#!/usr/bin/env bash
# cleanup -256color suffix from term and set something more compatible
typeset -A TERMS
TERMS=(
[st]='xterm'
[tmux]='screen'
)
TERM="${TERMS[${TERM%%-256color}]-${TERM%%-256color}}" exec ssh "$@"