Linux alias command

In Linux, the “alias” command is used to create custom shortcuts or abbreviations for other commands. It allows you to define your own command names or modify existing command names to simplify their usage. Here’s how to use the “alias” command:

  1. Open a Terminal:
    Launch a terminal emulator on your Linux system.
  2. Type the “alias” command:
    The basic syntax of the “alias” command is as follows:
   alias [name[='value']]
  • The “name” represents the new command name or the existing command name you want to modify.
  • The “value” represents the command or command sequence you want to associate with the new or modified command name. It can be a single command or a sequence of commands enclosed in quotes. For example, let’s say you want to create an alias called “ll” for the “ls -l” command to display detailed file information. You can use the following command:
   alias ll='ls -l'

Now, whenever you type “ll” in the terminal and press Enter, it will execute the “ls -l” command.

  1. Viewing Existing Aliases:
    To view the list of existing aliases defined in your Linux system, you can simply type the “alias” command without any arguments:
   alias

The terminal will display a list of aliases along with their definitions.

  1. Persistent Aliases:
    The aliases you create using the “alias” command are only available for the current terminal session. If you want to make them available every time you open a new terminal, you need to define them in a configuration file like ~/.bashrc or ~/.bash_aliases. Open the desired configuration file using a text editor and add your alias definition. For example, to define the “ll” alias for “ls -l”, you can add the following line to the ~/.bashrc file:
   alias ll='ls -l'

Save the file and exit the text editor. The aliases defined in the configuration file will be loaded automatically whenever you open a new terminal.

  1. Removing an Alias:
    To remove an existing alias, you can use the “unalias” command followed by the alias name. For example, to remove the “ll” alias, you can use the following command:
   unalias ll

After executing the “unalias” command, the alias will no longer be available.

  1. Using Complex Commands:
    You can also define aliases for complex commands or command sequences. For example, if you frequently run a long command with specific options and arguments, you can create an alias for it to save time. Just enclose the command or command sequence in quotes and assign it to an alias name. For example:
   alias update='sudo apt update && sudo apt upgrade'

Now, whenever you type “update” in the terminal, it will execute the command sequence “sudo apt update && sudo apt upgrade”.

The “alias” command allows you to create custom shortcuts for commands, making your command-line experience more efficient. You can define aliases for frequently used commands, complex commands, or modify existing commands to suit your preferences. Remember to define persistent aliases in a configuration file to make them available in every terminal session.