So I'm trying to run a python with this syntax that i found in internet.
python test.py test&
I'm wondering what does the test&
mean?.
When i just run python test.py
and ps aux | grep python
the output is.
root 19858 0.0 0.3 15148 6164 pts/1 S 23:07 0:00 python test.py
And when you run python test.py test&
The output now in ps aux | grep python
is
root 19858 0.0 0.3 15148 6164 pts/1 S 23:07 0:00 python test.py test
I know the last part starting from python
is command but can you explain further.