DEBSOURCES
Skip Quicknav
sources / libssh / 0.5.4-1%2Bdeb7u3 / tests / generate.py
12345678910
#!/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)