码迷,mamicode.com
首页 > 系统相关 > 详细

linux find 样例

时间:2015-05-04 19:33:04      阅读:173      评论:0      收藏:0      [点我收藏+]

标签:

一、语法

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

linux find 样例

标签:

原文地址:http://www.cnblogs.com/aqing1987/p/4476630.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!