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

FlagDescription

-p

Print the list of currently defined aliases.

-a

Define alias for all users (must be superuser).


Examples

CommandDescription

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