view bin/toutf8 @ 2625:872664b66a3e

<elliott> sed -i \'1017s/$/ <Bike> please provide at least two zebrafish you have modified to glow in the dark/\' quotes
author HackBot
date Tue, 09 Apr 2013 01:06:16 +0000
parents e037173e0012
children
line wrap: on
line source

#!/usr/bin/python
import sys
import chardet
x = sys.stdin.read()
enc = chardet.detect(x)['encoding']
sys.stdout.write(x.decode(enc).encode('UTF-8'))