1. Windows以不同的扩展名来区分不同的文件,例如:.exe .png等
2. Linux下对扩展名没有明确的要求有时就会遇到各种坑,当我们不知道是一个压缩文件,用一些命令查看的时候,会出现各种乱码
[root@linuxidc ~]# cat text |head Y谛8о+ub.°@¤q:%DURr)Xs弱±O§萞L泏d2§渗2c
3. 用file来查看文件类型
[root@linuxidc ~]# file text
text: gzip compressed data,from Unix, last modified: Wed Aug 23 23:10:14 2017
[root@linuxidc ~]#
4. 由此可以看出,这是个压缩文件,可以使用,tar -tf查看
[root@linuxidc ~]# tar -tftext
etc/services
[root@linuxidc ~]#
5. 对于一没有扩展名的文件,可以用file查看文件类型
[root@linuxidc ~]# file /bin/ls /etc/hosts ser.tar.gz
/bin/ls: ELF 64-bit LSB executable, x86-64, version 1(SYSV), dynamically linked (uses shared libs), for GNU/Linux 2.6.18, stripped
/etc/hosts: ASCIItext
ser.tar.gz: gzipcompressed data, from Unix, last modified: Wed Aug 23 23:10:14 2017
[root@linuxidc ~]#
本文永久更新链接地址:http://www.linuxidc.com/Linux/2017-09/146691.htm