armbian-build/packages/bsp/common/etc/profile.d/ssh-title.sh
2017-07-24 16:38:00 +03:00

6 lines
174 B
Bash

if [ -n "$PS1" ] && ( [ -n "$SSH_CLIENT" ] || [ -n "$SSH_TTY" ] ); then
tput tsl > /dev/null
if [ "$?" -eq 0 ]; then
echo `tput tsl` `whoami`@`hostname` `tput fsl`
fi
fi