alias command in Linux with Examples
alias command instructs the shell to replace one string with another string while executing the commands.
When we often have to use a single big command multiple times, in those cases, we create something called as alias for that command. Alias is like a shortcut command which will have same functionality as if we are writing the whole command.
Syntax:
alias [-p] [name[=value] ... ]
Creating an alias :
Syntax:
alias name="value"
Creating an Unalias : Removing an existing alias is known as unaliasing.
Syntax:
unalias [alias name]
Options for Alias command:
- -p option : This option prints all the defined aliases is reusable format.
Syntax:
alias -p
- –help option : It displays help Information.
Syntax:
alias --help
How to remove an alias?
We use unalias command for this purpose.
How to permanently store aliases across sessions?
We can store aliases in shell configuration files. For example for Bash Shell, we can write in ~/.bashrc.
alias CD="cd Desktop"
?t=291
Please Login to comment...