sugar-toolkit-gtk3/bin/sugar-backup
Marco Pesenti Gritti dbe42ac6d9 Make the shell scripts just a tiny wrapper which setup
the python path and run main().
2008-02-04 20:36:09 +01:00

12 lines
156 B
Python

#!/usr/bin/env python
import sys
import time
i = 0
while i <= 100:
time.sleep(0.5)
sys.stdout.write('%d\n' % i)
sys.stdout.flush()
i += 5