Created
August 4, 2011 15:49
-
-
Save eLafo/1125487 to your computer and use it in GitHub Desktop.
Colored ssh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
BACK=$3 | |
FORE=$4 | |
setterm -term linux -back ${BACK:='default'} -fore ${FORE:='default'} -clear | |
ssh -l ${1} ${2};setterm -term linux -back default -fore default;clear |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment