sanitize_unicode.py
1 #!/bin/python3 2 3 import sys 4 5 # Run with PYTHONIOENCODING=UTF8:ignore 6 7 for line in sys.stdin: 8 print(line)
1 #!/bin/python3 2 3 import sys 4 5 # Run with PYTHONIOENCODING=UTF8:ignore 6 7 for line in sys.stdin: 8 print(line)