linux cat 文件乱码

test.log是utf-16的编码

cat test.log会报错

但是我们可以cat的时候指定编码格式

iconv -f 文件编码 -t 终端编码 input.log

iconv -f utf-16 -t utf-8 test.log


你可能感兴趣的:(linux)