alias
Create aliases - words that are replaced by a command string.
Aliases expire with the current shell session unless defined in the shell's configuration file, e.g. ~/.bashrc
.
More information: https://tldp.org/LDP/abs/html/aliases.html.
- List all aliases:
alias
- Create a generic alias:
alias
word="
command"
- View the command associated to a given alias:
alias
word
- Remove an aliased command:
unalias
word
- Turn
rm
into an interactive command:
alias
rm="
rm –interactive"
- Create
la
as a shortcut forls --all
:
alias
la="
ls –all"
Related Topics
বাংলা version
Deutsch version
español version
فارسی version
français version
हिन्दी version
Indonesia version
italiano version
日本語 version
한국어 version
नेपाली version
Nederlands version
português (Brasil) version
português (Portugal) version
русский version
Türkçe version
中文 version
中文 (繁體, 台灣) version