Tuesday, January 06, 2009

alias with argument in bash shell

Instead of running "ssh -p 1234 -l shelluser serverX.example.com", you could do "myssh serverX". To do that, you can put this into your .bash_profile as an alias: sshas() { ssh -p 1234 -l shelluser "$1".example.com; }

Labels:

0 Comments:

Post a Comment

<< Home