求教脚本如果使重定向的文件编码为UTF-8
- # export LANG=zh_CN.UTF-8
- # echo hello >test.txt
- # file test.txt
- test.txt: ASCII text
- # iconv -f ASCII -t UTF-8 test.txt
- hello
- # file test.txt
- test.txt: ASCII text
- # iconv -f ASCII -t UTF-8 test.txt >testnew.txt
- # file testnew.txt
- testnew.txt: ASCII text
纠结了很久,一直未能实现,求教。
作者: zjdick1984 发布时间: 2011-06-07
如果你的脚本编码为UTF-8的 那么你输出的日志编码也就是UTF-8的
作者: caoshaocong 发布时间: 2011-06-07