I have a long-running python script script.py.
Will it cause any issues if I invoke that script one-after the another through terminal:
python script.py -----first invocation
python script.py -----second invocation before the first gets over.
Since python is a interpreted language, will there be any interference between these two scripts?
Or is it safer to make a copy of the script and then run it?
script.pyI would vote to close this personally.