bash:aliases:disable_an_alias_temporarily
This is an old revision of the document!
BASH - Aliases - Disable an alias temporarily
To override an alias and revert to calling the actual command, simply call the alias with a backslash.
alias ls='ls -al'`
The alias would usually be called using:
ls
but to override it call it using:
\ls
bash/aliases/disable_an_alias_temporarily.1588710796.txt.gz · Last modified: 2020/07/15 09:30 (external edit)