Created
February 19, 2010 15:16
-
-
Save jarib/308774 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ echo "æåø" > test.txt | |
$ file test.txt | |
test.txt: UTF-8 Unicode text | |
$ echo "æåø" |iconv -t iso-8859-1 >> test.txt | |
$ file test.txt | |
test.txt: ISO-8859 text | |
$ cat test.txt | |
æåø | |
??? | |
$ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment