I've developed three python modules that I usually run with:
Code: Select all
sudo python process1.py &
sudo python process2.py &
sudo python process3.py &If I run all of them in the same session (for example through a .sh script or starting them manually) seems that elaboration time is about a 30% more (slower).
If I run all of them in separate sessions all seems to be faster.
Questions:
1 - why is this happening ?
2 - how I could automatically run (after boot) these three script in three separate sections ?
Thanks very much,
regards to all.
SuperNoob