tmate/libssh/tests/generate.py

11 lines
127 B
Python
Raw Normal View History

2013-06-10 06:58:12 +02:00
#!/usr/bin/python
import os
a=""
for i in xrange(4096):
a+=chr(i % 256);
while True:
try:
os.write(1,a)
except:
exit(0)