view bin/toutf8 @ 7230:852cd4577ee7

<b_jonas> `` makelist keenlist b_jonas && learn \'keenlist is notification for when Tom Hall finally acquires the necessary intellectual property rights to create the videogame series Commander Keen: The Universe is Toast\'
author HackBot
date Mon, 14 Mar 2016 18:54:05 +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'))