haha. Joke asides, there are few ways to ignore bash aliases. For example, to ignore python alias, type the `command` followed by alias name:
```
command python ...
```
Both \ and " symbols allows you to run real python command and ignore python alias at the CLI:
```
\python ...
"python" ...
```
Or just full path:
```
/usr/bin/python ...
```
more @ https://www.cyberciti.biz/faq/ignore-shell-aliases-functions-when-running-command/ in case if you wish to read.
#unix #linux #opensource
