linux find 样例
一、语法
find [directories] [expression]
二、参数说明
-name pattern // pattern 为待查找文件配置格式,允许使用通配符,通配符前需要加转义字符如, \*,\?
-type t // t 可为 f (文件),d (目录),l (符号连接),b (块设备), c (字符设备), p (命名管道), s (套接字)
-print // 打印到指定文件的相对路径
三、例子
1)全目录下查找指定文件 myfile
$ find / -type f -name myfile -print
2)打印所有目录名
$ find / -type d -print
3)打印 以 .txt 结尾的所有文件
$ find / -type f -name \*.txt -print
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。