## start with python -u

import os, sys, time

pid = os.fork()
if pid == 0:
    # terminate the child
    sys.exit(1)
else:
    # don't let the parent wait
    for i in range(30):
        print '.',
        time.sleep(1)

######################################################################
