The command
python foo.py
When called on the terminal, it runs the sent python file. Imagine that I have a python file that always needs to be called as follows:
xvfb-run python foo.py
to work.
Is there any way I can write something like this in Shell:
python = xvfb-run python
So, whenever I call python
it will call xvfb-run python
?