3
打开非utf8编码的文本文件
有时我需要打开用EUC-KR编码的文本文件。 man gedit 给出: --encoding Set the character encoding to be used for opening the files listed on the command line. 这可以用来打开具有所需编码的特定文件: gedit --encoding euc-kr readme.txt 但是,每个要打开的文件都需要键入类似的命令。 我可以iconv在文件上运行,但随后必须处理不同的文件版本。 我有更好的选择来处理非utf8文本文件吗?