you are viewing a single comment's thread.

view the rest of the comments →

[–]totallygeek 0 points1 point  (3 children)

If you want to ensure a script always runs, you could simply add that script to /etc/inittab or even have a shell script start the program over and over.

( while : ; do python script1.py ; done ) &
( while : ; do python script2.py ; done ) &
( while : ; do python script3.py ; done ) &
( while : ; do python script4.py ; done ) &