[root@NGINX-APACHE-SVN pro]# file 林.txt 林.txt: ISO-8859 text, with no line terminators #在LINUX下显示乱码
[root@NGINX-APACHE-SVN pro]# iconv -f GBK -t UTF-8 林.txt -o 林1.txt [root@NGINX-APACHE-SVN pro]# file 林1.txt 林1.txt: UTF-8 Unicode text, with no line terminators #问题解决! [root@NGINX-APACHE-SVN pro]# file 林.txt 林.txt: ISO-8859 text, with no line terminators
[root@NGINX-APACHE-SVN pro]# yum search iconv Loaded plugins: fastestmirror Loading mirror speeds from cached hostfile * base: mirrors.btte.net * extras: mirrors.tuna.tsinghua.edu.cn * updates: mirrors.btte.net base | 3.7 kB 00:00 extras | 3.4 kB 00:00 updates | 3.4 kB 00:00 updates/primary_db | 1.4 MB 00:03 ========================================== N/S Matched: iconv =========================================== perl-Text-Iconv.x86_64 : Perl interface to iconv() codeset conversion function Name and summary matches only, use "search all" for everything. [root@NGINX-APACHE-SVN pro]# yum search iconv Loaded plugins: fastestmirror Loading mirror speeds from cached hostfile * base: mirrors.btte.net * extras: mirrors.tuna.tsinghua.edu.cn * updates: mirror.bit.edu.cn ========================================== N/S Matched: iconv =========================================== perl-Text-Iconv.x86_64 : Perl interface to iconv() codeset conversion function Name and summary matches only, use "search all" for everything.
名子相同也能够:html
root@NGINX-APACHE-SVN pro]# file 20160704mysql.txt 20160704mysql.txt: ISO-8859 text, with CRLF line terminators [root@NGINX-APACHE-SVN pro]# iconv -f GBK -t UTF-8 20160704mysql.txt -o 20160704mysql.txt [root@NGINX-APACHE-SVN pro]# file 20160704mysql.txt 20160704mysql.txt: UTF-8 Unicode text, with CRLF line terminators
=======================================================================mysql
[root@NGINX-APACHE-SVN pro]# file 交互式建立apache虚拟主机.txt 交互式建立apache虚拟主机.txt: Bourne-Again shell script text executable #这是个shell肢本,但里面有中文,显示为乱码!
一样用iconv命令来除理,结果成功了!sql
[root@NGINX-APACHE-SVN pro]# iconv -f GBK -t UTF-8 交互式建立apache虚拟主机.txt -o 交互式建立apache虚拟主机.txt
若是去掉#!/bin/bash 再次查看:shell
[root@NGINX-APACHE-SVN pro]# file 交互式建立apache虚拟主机.txt 交互式建立apache虚拟主机.txt: ISO-8859 text, with CRLF line terminators
因此这个乱码的问题,能够用上面的方法去解决!!apache