File: generate.py

package info (click to toggle)
libssh 0.6.3-4%2Bdeb8u2
  • links: PTS, VCS
  • area: main
  • in suites: jessie
  • size: 2,932 kB
  • ctags: 3,508
  • sloc: ansic: 38,322; cpp: 372; makefile: 40; sh: 22; python: 9
file content (10 lines) | stat: -rwxr-xr-x 127 bytes parent folder | download | duplicates (12)
1
2
3
4
5
6
7
8
9
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)