Alias command comes handy when we are in need to make long and frequently used command string short.
To list the current set of aliases simply type
$ alias
To display the set alias for a specified alias name, type
$ alias alias-shortstring
Example:
$ alias ls
To set an alias you use the format
$ alias shortstring = "linux command string"
(more…)