I hope i can explain this well.. (english is not my first language) but in this question they ask to run multiple python scripts simultaneously. this is exactly how im doing it right now, basically just excecuting my multiple scripts with & in bash
what im trying to do is avoid creating multiple scripts and would like a script that can run all of them simultaneously
on of the scripts looks like this (similar to all my other scripts)
while True:
text = "some shell script"
os.system(text)
I finding it difficult to use a while loop, or any kind of loop because it executes them one after the other and it got really slow. I'm very unfamiliar with python and not so good at programming.. so any help would be great