K

Ignore Linux alias commands

Bypass a defined Linux alias and use the raw command you've typed.

Posted: December 14, 2022
Find more posts about:

There are four methods for bypassing a defined alias.

  1. Use the full path to the original program. /usr/bin/rm ...
  2. Prepend the command with a backslash. \rm ...
  3. Wrap the command in quotes, single or double. "rm" ...
  4. Use the command keyword to execute the command. command rm ...