Tip: Ignoring Aliases In Bash
Let’s say you have the following alias:
ls='ls -laFh'
And, you want to just call ‘ls’ by itself…
Just lead the command with a ‘\’ to bypass the alias.
\ls
That will give you the naked ‘ls’ command.
(via nixCraft)