How to tell bash not to expand aliases

aliasbash

I know there is a simple syntax for telling bash not to expand aliases. However, Google is not turning it up and I'm too lazy to read through man bash. Also, the answer should be on this website.

Best Answer

Put a backslash before the first character.

$ alias ls="echo foo"
$ ls
foo
$ \ls
bin
Desktop
Documents
  ...