Skip to content

Instantly share code, notes, and snippets.

@tmerr
Created February 16, 2018 20:00
Show Gist options
  • Save tmerr/cc2a08370c07afe2952405627ae94bc7 to your computer and use it in GitHub Desktop.
Save tmerr/cc2a08370c07afe2952405627ae94bc7 to your computer and use it in GitHub Desktop.
import time
i = 0
while True:
i += 1
with open('/tmp/thing', 'a') as f:
f.write('hello {}\n'.format(i))
time.sleep(0.5);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment