8 lines
224 B
Bash
Executable file
8 lines
224 B
Bash
Executable file
#!/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 "$@"
|