rust-pm 0.0.2

A poor and simple imitation of supervisord
1
2
3
4
5
6
7
8
9
10
#! /usr/bin/python
from time import sleep
import sys

for x in range(1, 10):
  print "I'll take some rest"
  sys.stdout.flush()
  sleep(3)

print "Done sleeping"