mirror of
https://github.com/tmate-io/tmate.git
synced 2026-01-23 18:36:05 +00:00
10 lines
127 B
Python
Executable file
10 lines
127 B
Python
Executable file
#!/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)
|