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: sysadmin
0 Comments:
Post a Comment
<< Home