file:显示文件的类型

xiaohai 2021-05-05 16:56:57 3079人围观 标签: Linux 
简介 file命令是显示文件的类型
说明

  file命令是显示文件的类型

格式

  file [option] [file]

常用参数说明

-b:使用精简的格式输出,不输出文件名

示例

  1. [root@localhost test]# ll
  2. 总用量 8
  3. -rw-r--r--. 1 root root 0 5 3 16:57 a b
  4. lrwxrwxrwx. 1 root root 9 5 3 07:30 abc1.txt -> test5.txt
  5. lrwxrwxrwx. 1 root root 17 5 3 08:46 abc2.txt -> ../test/test2.txt
  6. drwxr-xr-x. 4 root root 42 5 3 16:52 dir01
  7. drwxr-xr-x. 2 root root 6 5 3 07:00 dir02
  8. drwxr-xr-x. 2 root root 6 5 3 07:00 dir03
  9. drwxr-xr-x. 2 root root 6 5 3 07:00 dir04
  10. drwxr-xr-x. 2 root root 6 5 3 07:00 dir05
  11. -rw-r--r--. 1 nginx nginx 27 5 3 15:31 test2.txt
  12. -rw-r--r--. 1 555 root 0 5 3 07:00 test3.txt
  13. -rw-r--r--. 1 root root 2 5 3 08:42 test5.txt
  14. #未使用参数部分
  15. [root@localhost test]# file test2.txt
  16. test2.txt: ASCII text
  17. [root@localhost test]# file dir01/
  18. dir01/: directory
  19. [root@localhost test]# file abc1.txt
  20. abc1.txt: symbolic link to test5.txt
  21. #使用参数部分
  22. [root@localhost test]# file -b test2.txt
  23. ASCII text
  24. [root@localhost test]# file -b dir01
  25. directory
  26. [root@localhost test]# file -b abc1.txt
  27. symbolic link to test5.txt