iconv --list # 显示可识别的编码名称
iconv --list >./infomation.log # 显示可识别的编码名称,将信息存入infomation.log文件中
iconv -f GB2312 -t UTF-8 a.html > b.html # 转换GB2312编码的文件a.html为UTF-8编码,存入b.html
iconv -f GB2312 -t BIG5 a.html > b.html # 转换GB2312编码的文件a.html为BIG5编码,存入b.htmlhtml