EN
Bash - command alias
3
points
Own alias for command can be created with alias command:
Example ls
alias:
$ alias new_ls='ls -alh --color --time-style=long-iso'
Note: this alias will disappear after console will be closed.
To solve this problem ~/.bashrc can be used.
To remove alias use:
$ unalias new_ls
References: