to run a script in the background of debian you have to end with a & symbol.
Example: python test.py &
It will give you an process ID like [5] 2055
To stop it you just type: kill 2055
to run a script in the background of debian you have to end with a & symbol.
Example: python test.py &
It will give you an process ID like [5] 2055
To stop it you just type: kill 2055
This site uses Akismet to reduce spam. Learn how your comment data is processed.
Leave a Reply