There are four methods for bypassing a defined alias.
- Use the full path to the original program.
/usr/bin/rm ...
- Prepend the command with a backslash.
\rm ...
- Wrap the command in quotes, single or double.
"rm" ...
- Use the command keyword to execute the command.
command rm ...