Hello,
I'd like to start a piece of python script a thousand times! instead of trying to start them one-by-one how can I do that from linux command line?
Right now, I am doing it like this:
nohup python test.py &
nohup python test.py &
nohup python test.py &
nohup python test.py &
nohup python test.py &
...
Thanks in advance.