求教脚本如果使重定向的文件编码为UTF-8

  1. # export LANG=zh_CN.UTF-8
  2. # echo hello >test.txt
  3. # file test.txt
  4. test.txt: ASCII text
  5. # iconv -f ASCII -t UTF-8 test.txt
  6. hello
  7. # file test.txt
  8. test.txt: ASCII text
  9. # iconv -f ASCII -t UTF-8 test.txt >testnew.txt
  10. # file testnew.txt
  11. testnew.txt: ASCII text
复制代码
环境是rhas5,bash
纠结了很久,一直未能实现,求教。

作者: zjdick1984   发布时间: 2011-06-07

如果你的脚本编码为UTF-8的 那么你输出的日志编码也就是UTF-8的

作者: caoshaocong   发布时间: 2011-06-07