====== BASH - Aliases ======
A Bash **alias** allows the user to launch any command or group of commands (including options and filenames) by entering a single word.
Aliases are very convenient to use for frequently used commands.
----
===== Example =====
An alias **c** is created against **clear** command.
alias c='clear'`
Instead of needing to type the word **clear** to clear the screen, the letter **c** can now be used instead (with the [ENTER] key).
c
----
[[BASH:Aliases:My Aliases|My Aliases]]
----
[[BASH:Aliases:Delete an alias|Delete an alias]]
[[BASH:Aliases:Disable an alias temporarily|Disable an alias temporarily]]
[[BASH:Aliases:Examples|Examples]]
[[BASH:Aliases:Local vs Global Aliases|Local vs Global Aliases]]
[[BASH:Aliases:OS specific aliases|OS specific aliases]]
[[BASH:Aliases:Privileged access specific aliases|Privileged access specific aliases]]
----