alias
alias linux command cheatsheet by Thamizhiniyan C S
Introduction
The alias
command allows the user to create replacements for other commands and make them easier to remember and use.
Syntax
alias [option] [alias]='[command-or-path]'
Important Flags
Flag | Description |
---|---|
| Print the list of currently defined aliases. |
| Define alias for all users (must be superuser). |
Examples
Command | Description |
---|---|
To list all available aliases on the system | |
To list all available aliases on the system (Same as the above command) | |
Creating an alias named `print` which executes the `echo` command | |
Creating an alias named `list` which executes the `ls -la` command | |
To remove an alias | |
To remove all alias |
Last updated