使用find指令查找文件

问题介绍

一直搞不清楚find的用法,这里简单记录下。

简单用法

主要参考自tldr的介绍。

  1. # 当然,这里的模式可以不只是后缀名,使用shell通配符随意构造都可以,但是请明白你在做什么
  2. # Find files by extension:
  3. find root_path -name '*.ext'
  4. # e.g. -iname 忽略大小写
  5. find ~ -name '*.jpg'
  6. find ~ -iname '*.jpg'
  7. # Find files by matching multiple patterns:
  8. find root_path -name '*pattern_1*' -or -name '*pattern_2*'
  9. # Find directories matching a given name, in case-insensitive mode:
  10. find root_path -type d -iname *lib*
  11. # Find files matching a path pattern:
  12. find root_path -path '**/lib/**/*.ext'
  13. # Find files matching a given pattern, excluding specific paths:
  14. find root_path -name '*.py' -not -path '*/site-packages/*'
  15. # 这条指令很有用,用来将模式匹配出来的文件用于后面指令的参数,例如可以用来找到合适的文件后删掉(虽然可以直接使用`-delete`来处理)
  16. # 下面这条指令使用`wc`指令来统计文件行数,关于`wc`的内容可见“补充内容”一节
  17. # Run a command for each file (use {} within the command to access the filename):
  18. find root_path -name '*.ext' -exec wc -l {} \;
  19. # 在-size 和 -mtime 后接的数字,+表示大于,-表示小于
  20. # Find files matching a given size range:
  21. find root_path -size +500k -size -10M
  22. # Find files modified in the last 7 days, and delete them:
  23. find root_path -mtime -7 -delete
  24. # 注意,这个指令会删除文件

特殊案例

使用**find**检索删除文件

记住:在shell中用任何方式删除文件之前,应当先查看相应的文件,一定要小心!当使用诸如mvrm命令时,可以使用-exec选项的安全模式。它将在对每个匹配到的文件进行操作之前提示你。

  1. # 借助管道和`xargs`:find -参数 | xargs -参数 rm
  2. # `xargs -0`可以防止文件名中有空格导致被`rm`认作是两个不同的文件
  3. find . -name '[0-2]_1.txt' -exec rm -v {} \;
  4. # 使用`find`的`-exec`选项,`rm`的`-v`选项是输出提示
  5. find /home/raven -name abc.txt -exec rm -v {} \;
  6. find . -name '[0-2]_2.txt' -delete
  1. $ ll
  2. total 8
  3. drwxr-xr-x 2 lart lart 4096 11 8 10:33 ./
  4. drwxr-xr-x 4 lart lart 4096 11 8 10:28 ../
  5. -rw-r--r-- 1 lart lart 0 11 8 10:29 0_0.txt
  6. -rw-r--r-- 1 lart lart 0 11 8 10:29 0_1.txt
  7. -rw-r--r-- 1 lart lart 0 11 8 10:29 0_2.txt
  8. -rw-r--r-- 1 lart lart 0 11 8 10:29 1_0.txt
  9. -rw-r--r-- 1 lart lart 0 11 8 10:29 1_1.txt
  10. -rw-r--r-- 1 lart lart 0 11 8 10:29 1_2.txt
  11. -rw-r--r-- 1 lart lart 0 11 8 10:29 2_0.txt
  12. -rw-r--r-- 1 lart lart 0 11 8 10:29 2_1.txt
  13. -rw-r--r-- 1 lart lart 0 11 8 10:29 2_2.txt
  14. $ find . -name '[0-2]_0.txt' | xargs rm -v
  15. removed './1_0.txt'
  16. removed './0_0.txt'
  17. removed './2_0.txt'
  18. $ find . -name '[0-2]_1.txt' -exec rm -v {} \;
  19. removed './0_1.txt'
  20. removed './2_1.txt'
  21. removed './1_1.txt'
  22. $ ll
  23. total 8
  24. drwxr-xr-x 2 lart lart 4096 11 8 10:35 ./
  25. drwxr-xr-x 4 lart lart 4096 11 8 10:28 ../
  26. -rw-r--r-- 1 lart lart 0 11 8 10:29 0_2.txt
  27. -rw-r--r-- 1 lart lart 0 11 8 10:29 1_2.txt
  28. -rw-r--r-- 1 lart lart 0 11 8 10:29 2_2.txt
  29. $ find . -name '[0-2]_2.txt' -delete
  30. $ ll
  31. total 8
  32. drwxr-xr-x 2 lart lart 4096 11 8 10:36 ./
  33. drwxr-xr-x 4 lart lart 4096 11 8 10:28 ../

补充介绍

wc命令

  1. $ tldr wc
  2. wc
  3. Count words, bytes, or lines.
  4. - Count lines in file:
  5. wc -l file
  6. - Count words in file:
  7. wc -w file
  8. - Count characters (bytes) in file:
  9. wc -c file
  10. - Count characters in file (taking multi-byte character sets into account):
  11. wc -m file

xargs命令

  1. $ tldr xargs
  2. xargs
  3. Execute a command with piped arguments coming from another command, a file, etc.
  4. The input is treated as a single block of text and split into separate arguments on spaces, tabs, newlines and end-of-file.
  5. - Main usage pattern:
  6. arguments_source | xargs command
  7. - 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):
  8. find . -name '*.backup' -print0 | xargs -0 rm -v
  9. - Execute the command once for each input line, replacing any occurrences of the placeholder (here marked as _) with the input line:
  10. arguments_source | xargs -I _ command _ optional_extra_arguments
  11. - 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:
  12. 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

参考链接