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?