How to run commands without aliases in Bash, the Linux command line language.
I usually have aliases like:
alias df="df -h"
alias ls="ls -alit"
But there are times when I want to run ls without aliases, or ls -a. In such cases, you donโt have to go to the trouble of removing the alias, you can do it as follows:
command ls
# or
\ls
# or
/bin/ls
Reference: bash - Run a command that is shadowed by an alias - Unix & Linux Stack Exchange