I have an alias for the ls
command in my ~/.bashrc
file aliased with this one:
alias ls='ls --color=auto'
When I run the ls
command in a terminal, the aliased ls
(ls --color=auto
) runs.
My question is: how can I run the original ls
only (not the aliased one), without any extra arguments and without deleting the aliased entry?
command something
bypasses both alias AND function namedsomething
.\\something
,'something'
and"something"
only bypasses alias namedsomething
(if a function exist, it will then be called). (alias precede function if both exist and none are bypassed) – Olivier Dulac Sep 17 '14 at 17:55