grep 怎么找一个单词 不知道在哪个文件
发布网友
发布时间:2022-04-20 11:45
我来回答
共2个回答
热心网友
时间:2023-09-28 08:38
[test@test-in ~]$ cat 0518.txt.grep
this is a test for grep command
which enables the deleted file to be recovered!
just have fun for the testing!!
比如我想在当前目录下找一个叫做enables的单词,下面的结果显示在文件0518.txt.grep这个文件中找到了这个单词。
[test@test-in ~]$ grep enables *
0518.txt.grep:which enables the deleted file to be recovered!
上面的例子可以看得明白吧,很容易的。谢谢;')
热心网友
时间:2023-09-28 08:39
在当前目录查找含有‘单词’的文件 #grep '单词' ./*