# find . -perm -g=r -type f -exec ls -l {} \;-rw-r--r-- 1 root root 0 2009-02-19 20:30 ./everybody_read-rwxrwxrwx 1 root root 0 2009-02-19 20:31 ./all_for_all---r--- 1 root root 0 2009-02-19 20:27 ./others_can_only_read-rw-r--- 1 root root 0 2009-...
– 使用逻辑或运算符(-o或||):find /path/to/search -name “file1” -o -name “file2” 6. 执行操作: – 打印文件名:find /path/to/search -name “filename” -print – 执行其他命令:find /path/to/search -name “filename” -exec command {} \; – 删除文件:find /path/to/search -na...
Deprecated(弃用), old way of searching for files with any of the permission bits in mode set. You should use -perm /mode instead. Trying to use the `+' syntax with symbolic modes will yield surprising results. For example, `+u+x' is a valid symbolic mode (equivalent to +u,+x, i....
$ find <path> {file-or-directory-name} <options> <action-on-result> <action-on-result>可选项...
find命令常与xargs命令一起使用,以对找到的文件执行命令。xargs可以从标准输入接收数据,并将这些数据作为参数传递给其他命令。 基本使用案例 将find命令的输出传递给xargs可以批量处理文件。例如,如果你想删除所有.tmp文件,可以使用find . -name "*.tmp" | xargs rm命令。 使用-print0和-0选项处理特殊文件名 在处...
:setai自动缩进(其他发行版本):setshiftwidth=4设置自动缩进空格数为4(ubuntu系统):setsoftabstop=4设置制表符宽度为4:setic 查找时不考虑大小写:setnoic 查找时考虑大小写显示对应的括号:setsm(show match):setnosm语法高亮::syntax on:syntax off搜索高亮::sethlsearch:setnohlsearch ...
file 辨识文件类型 查询文件 find 在目录结构中查找文件 代码语言:javascript 复制 find/etc-name vim*//查找文件名中以vim开头的所有文件 locate 查找符合条件的文件 代码语言:javascript 复制 locate cpuinfo//查找含有cpuinfo的文件 grep 查找包含指定关键字的文件 ...
find命令支持标准的UNIX regex来匹配、包含或排除文件。您可以使用regex轻松地编写复杂的查询,同时find命令会对每一个/file/to/path列出的目录树进行递归下降,评估一个表达式。 查找命令排除或忽略文件语法 语法如下: ### ## Basic syntax ## ### find /dir/to/search...
-a FILE:同 -e -e FILE: 文件存在性测试,存在为真,否则为假 -b FILE:是否存在且为块设备文件 -c FILE:是否存在且为字符设备文件 -d FILE:是否存在且为目录文件 -f FILE:是否存在且为普通文件 -h FILE 或 -L FILE:存在且为符号链接文件
File name matches regular expression pattern. This is a match on the whole path, not a search. For example, to match afilenamed'./fubar3', you can use the regular expression'.*bar.'or'.*b.*3', but not'f.*r3'.The regular expressions understood byfindare by default ...