使用find
指令查找文件
问题介绍
一直搞不清楚find
的用法,这里简单记录下。
简单用法
主要参考自tldr的介绍。
# 当然,这里的模式可以不只是后缀名,使用shell通配符随意构造都可以,但是请明白你在做什么
# Find files by extension:
find root_path -name '*.ext'
# e.g. -iname 忽略大小写
find ~ -name '*.jpg'
find ~ -iname '*.jpg'
# Find files by matching multiple patterns:
find root_path -name '*pattern_1*' -or -name '*pattern_2*'
# Find directories matching a given name, in case-insensitive mode:
find root_path -type d -iname *lib*
# Find files matching a path pattern:
find root_path -path '**/lib/**/*.ext'
# Find files matching a given pattern, excluding specific paths:
find root_path -name '*.py' -not -path '*/site-packages/*'
# 这条指令很有用,用来将模式匹配出来的文件用于后面指令的参数,例如可以用来找到合适的文件后删掉(虽然可以直接使用`-delete`来处理)
# 下面这条指令使用`wc`指令来统计文件行数,关于`wc`的内容可见“补充内容”一节
# Run a command for each file (use {} within the command to access the filename):
find root_path -name '*.ext' -exec wc -l {} \;
# 在-size 和 -mtime 后接的数字,+表示大于,-表示小于
# Find files matching a given size range:
find root_path -size +500k -size -10M
# Find files modified in the last 7 days, and delete them:
find root_path -mtime -7 -delete
# 注意,这个指令会删除文件
特殊案例
使用**find**
检索删除文件。
记住:在shell中用任何方式删除文件之前,应当先查看相应的文件,一定要小心!当使用诸如mv
或rm
命令时,可以使用-exec
选项的安全模式。它将在对每个匹配到的文件进行操作之前提示你。
# 借助管道和`xargs`:find -参数 | xargs -参数 rm
# `xargs -0`可以防止文件名中有空格导致被`rm`认作是两个不同的文件
find . -name '[0-2]_1.txt' -exec rm -v {} \;
# 使用`find`的`-exec`选项,`rm`的`-v`选项是输出提示
find /home/raven -name abc.txt -exec rm -v {} \;
find . -name '[0-2]_2.txt' -delete
$ ll
total 8
drwxr-xr-x 2 lart lart 4096 11月 8 10:33 ./
drwxr-xr-x 4 lart lart 4096 11月 8 10:28 ../
-rw-r--r-- 1 lart lart 0 11月 8 10:29 0_0.txt
-rw-r--r-- 1 lart lart 0 11月 8 10:29 0_1.txt
-rw-r--r-- 1 lart lart 0 11月 8 10:29 0_2.txt
-rw-r--r-- 1 lart lart 0 11月 8 10:29 1_0.txt
-rw-r--r-- 1 lart lart 0 11月 8 10:29 1_1.txt
-rw-r--r-- 1 lart lart 0 11月 8 10:29 1_2.txt
-rw-r--r-- 1 lart lart 0 11月 8 10:29 2_0.txt
-rw-r--r-- 1 lart lart 0 11月 8 10:29 2_1.txt
-rw-r--r-- 1 lart lart 0 11月 8 10:29 2_2.txt
$ find . -name '[0-2]_0.txt' | xargs rm -v
removed './1_0.txt'
removed './0_0.txt'
removed './2_0.txt'
$ find . -name '[0-2]_1.txt' -exec rm -v {} \;
removed './0_1.txt'
removed './2_1.txt'
removed './1_1.txt'
$ ll
total 8
drwxr-xr-x 2 lart lart 4096 11月 8 10:35 ./
drwxr-xr-x 4 lart lart 4096 11月 8 10:28 ../
-rw-r--r-- 1 lart lart 0 11月 8 10:29 0_2.txt
-rw-r--r-- 1 lart lart 0 11月 8 10:29 1_2.txt
-rw-r--r-- 1 lart lart 0 11月 8 10:29 2_2.txt
$ find . -name '[0-2]_2.txt' -delete
$ ll
total 8
drwxr-xr-x 2 lart lart 4096 11月 8 10:36 ./
drwxr-xr-x 4 lart lart 4096 11月 8 10:28 ../
补充介绍
wc
命令
$ tldr wc
wc
Count words, bytes, or lines.
- Count lines in file:
wc -l file
- Count words in file:
wc -w file
- Count characters (bytes) in file:
wc -c file
- Count characters in file (taking multi-byte character sets into account):
wc -m file
xargs
命令
$ tldr xargs
xargs
Execute a command with piped arguments coming from another command, a file, etc.
The input is treated as a single block of text and split into separate arguments on spaces, tabs, newlines and end-of-file.
- Main usage pattern:
arguments_source | xargs command
- Delete all files with a .backup extension. -print0 on find uses a null character to split the files, and -0 changes the delimiter to the null character (useful if there's whitespace in filenames):
find . -name '*.backup' -print0 | xargs -0 rm -v
- Execute the command once for each input line, replacing any occurrences of the placeholder (here marked as _) with the input line:
arguments_source | xargs -I _ command _ optional_extra_arguments
- Parallel runs of up to max-procs processes at a time; the default is 1. If max-procs is 0, xargs will run as many processes as possible at a time:
arguments_source | xargs -P max-procs command
在使用find
命令的-exec
选项处理匹配到的文件时,find
命令将所有匹配到的文件一起传递给exec
执行。但有些系统对能够传递给exec
的命令长度有限制,这样在find
命令运行几分钟之后,就会出现 溢出错误。错误信息通常是“参数列太长”或“参数列溢出”。这就是xargs
命令的用处所在,特别是与find
命令一起使用。find
命令把匹配到的文件传递给xargs
命令,而xargs
命令每次只获取一部分文件而不是全部,不像-exec
选项那样。这样它可以先处理最先获取的一部分文件,然后是下一批,并如此继续下去。
在有些系统中,使用-exec
选项会为处理每一个匹配到的文件而发起一个相应的进程,并非将匹配到的文件全部作为参数一次执行;这样在有些情况下就会出现进程过多,系统性能下降的问题,因而效率不高;而使用xargs
命令则只有一个进程。另外,在使用xargs
命令时,究竟是一次获取所有的参数,还是分批取得参数,以及每一次获取参数的数目都会根据该命令的选项及系统内核中相应的可调参数来确定。
关于xargs
更多的更细致的介绍可见阮一峰的教程:https://www.ruanyifeng.com/blog/2019/08/xargs-tutorial.html