博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
find命令
阅读量:6182 次
发布时间:2019-06-21

本文共 613 字,大约阅读时间需要 2 分钟。

  • 语法格式
find [path] [options] [tests] [actions]
  • options
  -depth     Process each directory's contents before the directory itself.  
  -follow   跟随链接符号
  -maxdepths     最多搜索N层目录
  -mount     不搜索其他文件系统中到目录
  • tests
  -name  pattern     文件名匹配正则模式pattern,pattern尽量用引号  
  -newer  otherfile     比otherfile新
  -type f   文件类型是普通文件,可以为d(目录文件)和c(特殊类型)  
  -user username   文件属于username

    组合测试需要用括号,例: find / \( -name "test*" -or -newer afile \) -type f -print

  • actions
  -exec  command     执行命令  
  -ok  command   执行命令,需要确认
  -print   打印文件名
  -ls   执行ls -dils

 

 

 

 

转载于:https://www.cnblogs.com/kimiz/archive/2012/07/10/2585198.html

你可能感兴趣的文章
多核应用架构关键技术—软件管道与SOA
查看>>
Windows内核原理与实现
查看>>
也欢迎您访问我的个人主页http://www.april1985.com(原hesicong.com或april1985.com)
查看>>
MPQ技术内幕__
查看>>
文档生产工具 Doxygen
查看>>
PowerDesigner(一)-PowerDesigner概述(系统分析与建模)(转)
查看>>
Thrift RPC框架介绍
查看>>
球和正方形(矩形,长方形)碰撞 (二维) Flash Flex actionscript 3
查看>>
MVC框架 Struts
查看>>
【WebGoat 学习笔记】--2.安装
查看>>
js的parseInt函数结果为0很奇怪的问题
查看>>
滑雪_poj_1088(记忆化搜索).java
查看>>
ytu 1940:Palindromes _easy version(水题)
查看>>
asp.net“服务器应用程序不可用” 解决方法
查看>>
PHP中spl_autoload_register函数的用法
查看>>
response content-type json
查看>>
线程同步
查看>>
Android 从零开始打造异步处理框架
查看>>
调用Interop.zkemkeeper.dll无法使用解决方案
查看>>
贪心算法(Greedy Algorithm)
查看>>