如何在Linux系统中查找名称包含特定字符串的所有文件?
为了在Linux命令行中查找名称包含特定字符串的所有文件,我们将使用**grep**命令。首先,我们需要了解**grep**命令是什么以及如何在Linux中使用它。
Linux中的**grep**命令用于在一个文件中搜索特定字符模式。它是Linux中最常用的实用程序命令之一,用于显示包含我们试图搜索的模式的行。
通常,我们试图在文件中搜索的模式被称为正则表达式。
语法
grep [options] pattern [files]
虽然有很多不同的选项可供我们使用,但一些最常用的选项是:
-c : It lists only a count of the lines that match a pattern -h : displays the matched lines only. -i : Ignores, case for matching -l : prints filenames only -n : Display the matched lines and their line numbers. -v : It prints out all the lines that do not match the pattern -R : stands for recurse, would go into subdirectories as well.
现在,让我们考虑一个案例,我们想在特定目录(例如dir1)中的所有文件中查找特定模式。
语法
grep -rni "word" *
在上面的命令中,用…替换“word”占位符
为此,我们使用以下命令:
grep -rni "func main()" *
上述命令将尝试在特定目录以及子目录中的所有文件中查找字符串“func main()”。
输出
main.go:120:func main() {}
如果我们只想在一个目录中查找特定模式,而不是在子目录中查找,则需要使用以下命令:
grep -s "func main()" *
在上面的命令中,我们使用了**-s**标志,这将帮助我们避免在运行命令的目录中存在的每个子目录都收到警告。
输出
main.go:120:func main() {}
示例
命令
grep -R "apples" .
输出
immukul@192 linux-dir1% grep -R "apples" . ./d1/file.txt:apples ./d1/file.txt:applesauce ./d1/file.txt:applesnits ./d1/file.txt:dapples ./d1/file.txt:grapples ./d1/file.txt:mayapples ./d1/file.txt:pineapples ./d1/file.txt:sapples ./d1/file.txt:scrapples ./d2/2.txt:orange apples is great together ./d2/2.txt:apples nto great ./d2/2.txt:is apples good
广告