view bin/toutf8 @ 6937:a4e2b9749d1d

<zgrep> ` grep -ri \'hg\' bin > things_with_hg_in_them_in_bin.txt
author HackBot
date Tue, 23 Feb 2016 05:18:43 +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'))