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; }


Posted

in

by

Tags:

Comments

Leave a Reply

Your email address will not be published. Required fields are marked *