码迷,mamicode.com
首页 > 系统相关 > 详细

Linux常用命令--iconv

时间:2016-06-29 15:59:44      阅读:192      评论:0      收藏:0      [点我收藏+]

标签:linux   iconv   

1.功能:编码转换工具

2.安装方式:

wget http://ftp.gnu.org/pub/gnu/libiconv/libiconv-1.14.tar.gz

 ./configure --prefix=/usr/local

 make

 make install

3.语法:

iconv [OPTION...] [-f encoding] [-t encoding] [inputfile ...]

iconv -l

4.参数:

-f encoding, --from-code=encoding  起始编码

-t encoding, --to-code=encoding 输出的编码

-c 忽略非法字符

-l 列出已知的编码集合

-o 指定输出文件

-s 禁止警告信息,但不是错误信息

5.例子

测试用的文件test.txt是GBK编码,与Linux编码不一致,查看时显示乱码。使用iconv 修改编码之后显示正常。

[mysql@mysql ~]$ echo $LANG

zh_cn.UTF-8

[mysql@mysql ~]$ more test.txt 

[mysql@mysql ~]$ iconv -f GBK -t UTF-8 test.txt |more

今天是星期三。


本文出自 “三国冷笑话” 博客,请务必保留此出处http://myhwj.blog.51cto.com/9763975/1794172

Linux常用命令--iconv

标签:linux   iconv   

原文地址:http://myhwj.blog.51cto.com/9763975/1794172

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!