Aliases
The alias
command lets you whip up a quick shortcut for any command or set of options you might fancy using again in the future. To pop a new alias into the mix, or to have a look at existing ones, just use the alias
command.
Here are a few bash shell examples to show you how it's done:
In the first example, the letter p
is assigned to run the command pwd
and then to run ls -CF
to print the current working directory and list its contents in column form.
The second example runs the rm
command with the -i
option each time you type rm
. For those of you who are new to bash, rm
is short for remove, so is used to delete files.
Making an Alias Persistent
Note that adding an alias in the manner depicted earlier only persists for the current session. The moment you close that shell session down, your alias will die. If you want to render the change permanent, you need to follow modify your local .bashrc
file:
With the .bashrc
file modified and saved, refresh the current shell session:
Now, every time you open a shell session, the contents of the .bashrc
file are parsed, and the newly added aliases will take effect every time.
!!!CAUTION!!!
The alias command does not have ANY restrictions on the words used for an alias. This means you can set up an alias that shares its name with an already existing command. As discussed in the Non-PATH Commands section, aliases take priority over other commands. Hence, if there's a naming overlap between an alias and a genuine command, the system will favour the alias, which could inadvertently block the real command from running.
Let's illustrate this with a hypothetical example:

In this example, I've set up an alias named mkdir
, coincidentally the same name as the genuine command for creating directories. Instead of its original function, our alias triggers the command ping -c 1 localhost
, a command used for checking network connectivity. So, every time I input mkdir
, rather than creating a new directory, the system will conduct a network ping.
Should a situation like this occur, the solution is simple. We can either exit the current shell session, or use the unalias command to unset the offending alias:

Last updated
Was this helpful?