alias Command Examples in Linux

The alias command is used to customize the shell environment by generating command-line aliases. Aliases are shorthand for longer expressions. Using aliases, you can create a short string that represents a longer command with various options and arguments. For example, you can create an alias called myls that executes the ls – al command.

The Bash shell maintains a list of aliases that you can view by using the alias command by itself. You can also remove aliases using the unalias command. By default, aliases are only maintained for the current shell and for the user that created them. To have them persist, add the appropriate alias command to .bashrc or .bash_aliases, which is called by .bashrc.

Syntax

The syntax of the alias command is:

# alias [alias name[='command with options']

alias Command Examples

1. List all aliases:

# alias

2. Create a generic alias:

# alias word="command"

3. View the command associated to a given alias:

# alias word

4. Remove an aliased command:

# unalias word

5. Turn `rm` into an interactive command:

# alias rm="rm --interactive"

6. Create `la` as a shortcut for `ls –all`:

# alias la="ls --all"
Related Post