首页 > 代码库 > linux 中find 命令

linux 中find 命令

查找文件名称为test的文件并输入文件存在的路径

/ 为绝对路径  .为相对路径

 find / -name test -print

带测试的find命令

1 find . -newer test -print


在当前目录下查找比test 文件新的文件

联合查找,在当前目录下查找以下划线开头的文件或者是比test文件新的文件

1 find . \( -name "_" -or -newer test \) -type f -print

 

带命令的查找文件

1 find . newer test -type f -exec ls -l {}  \;

在文件中查找字符串(在ls.txt文件中查找really)

1 grep really ls.txt

在两个文件中计算匹配行的数目

1 grep -c really ls.txt lsl.txt

在两个文件中计算不匹配行的数目

1 grep -c -v really ls.txt lsl.txt

here文档

1 #!/bin/sh2 cat <<!A.xsk!3 hello4 my name is A.xsk5 document6 !A.xsk!

 

linux 中find 命令