iconv转换文件编码

来源:互联网 发布:vb数字金字塔 编辑:程序博客网 时间:2024/05/16 16:13

iconv的用法:

bowen@localhost ~$ iconv --helpUsage: iconv [OPTION...] [-f ENCODING] [-t ENCODING] [INPUTFILE...]or:    iconv -lConverts text from one encoding to another encoding.Options controlling the input and output format:  -f ENCODING, --from-code=ENCODING                              the encoding of the input  -t ENCODING, --to-code=ENCODING                              the encoding of the outputOptions controlling conversion problems:  -c                          discard unconvertible characters  --unicode-subst=FORMATSTRING                              substitution for unconvertible Unicode characters  --byte-subst=FORMATSTRING   substitution for unconvertible bytes  --widechar-subst=FORMATSTRING                              substitution for unconvertible wide charactersOptions controlling error output:  -s, --silent                suppress error messages about conversion problemsInformative output:  -l, --list                  list the supported encodings  --help                      display this help and exit  --version                   output version information and exitReport bugs to <bug-gnu-libiconv@gnu.org>.

例:iconv -f GB2312 -t UTF-8 test1.txt > test2.txt 
将test1.txt里的编码从GB2312转化成UTF-8 并重定向到test2.txt

0 0
原创粉丝点击