]> code.delx.au - monosys/blob - scripts/filterPrintable.py
html encode stuff
[monosys] / scripts / filterPrintable.py
1 #!/usr/bin/env python
2
3 import string, sys
4
5 while True:
6 c = sys.stdin.read(1)
7 if c in string.printable:
8 sys.stdout.write(c)
9