mirror of
https://github.com/tmate-io/tmate.git
synced 2025-08-14 15:58:27 +02:00
Adding libssh
This commit is contained in:
10
libssh/tests/generate.py
Executable file
10
libssh/tests/generate.py
Executable file
@ -0,0 +1,10 @@
|
||||
#!/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)
|
Reference in New Issue
Block a user