diff --git a/scriptlib/py/stdout_per_second.py b/scriptlib/py/stdout_per_second.py new file mode 100644 index 0000000..ddc0457 --- /dev/null +++ b/scriptlib/py/stdout_per_second.py @@ -0,0 +1,8 @@ +#!/usr/bin/python +import time +import sys +while True: + print('.',end='') + sys.stdout.flush() + time.sleep(1) +