team1389 / ElectriScout-CLI

CLI-Based version of ElectriScout - Runs on Linux and any computer with the Bash shell
2 stars 0 forks source link

Don't run the whole app recursively #9

Open ErikBoesen opened 6 years ago

ErikBoesen commented 6 years ago

This is not a great idea as it keeps the parent process running until its child exits. In Python, it keeps two processes running: the parent python process, and a shell to hold the os.system call (I think). You could get around this with a simple while or for loop in either language.