⌘K
alias
all
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` for Bash or `~/.zshrc` for Zsh. See also: `unalias`.
More info →Examples (6)
List all aliases
aliasCreate a generic alias
alias word="command"View the command associated to a given alias
alias wordRemove an aliased command
unalias wordTurn `rm` into an interactive command
alias rm="rm --interactive"Create `la` as a shortcut for `ls --all`
alias la="ls --all"made by @shridhargupta | data from tldr-pages