Linux常用命令--iconv

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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 修改编码之后显示正常。

[[email protected] ~]$ echo $LANG

zh_cn.UTF-8

[[email protected] ~]$ more test.txt 

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

今天是星期三。


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

以上是关于Linux常用命令--iconv的主要内容,如果未能解决你的问题,请参考以下文章

iconv命令

Linux 命令 —— iconv 转换编码

linux字符编码相关知识总结file命令iconv命令

linux字符编码相关知识总结file命令iconv命令

linux之iconv命令

linux之iconv命令