I want to create a shortcut for a command in terminal. Like for a command "ssh [email protected]", I just want a command "user" and the above command will run. Is this possible, and if so how can it be done?
Thank you!
I want to create a shortcut for a command in terminal. Like for a command "ssh [email protected]", I just want a command "user" and the above command will run. Is this possible, and if so how can it be done?
Thank you!
The shortcuts for commands are known as aliases.
The syntax to create an alias is:
Example:
For creating an alias for update and upgrade we should type the following in terminal,
So to create an alias for your command open the termianl and type:
If you want to not load the alias every time, to permanently store a alias command, do this.
Go to your home directory and press Ctrl+H to view hidden files, one of these files would be
.bashrc
. Open it.Now write the following command anywhere in the mainspace:
Your shortcut command will be stored permanently.
Aliases can take parameters. For example:
will perform chmod recursively on
MyFolder
Generally the answer is to alias your command, as mentioned by M.Tarun. For your example with ssh you might want to add it to your
.ssh/config
:Then call ssh with the name:
Your shell probably also has tab-completion for ssh. So you can just type
ssh s
and then hit Tab.This also has the advantage that it works with other commands like
scp
:Whereas the alias approach would not work with this.