如何在Centos7中查找包含特定文本的文件?

时间:2017-08-07 10:33:50

标签: linux centos7

我有一台运行在centos 7上的服务器。我需要找到一个包含0774386850的文件,以便我可以用另一个字符串替换。请给我一个Linux命令给我那个文件

3 个答案:

答案 0 :(得分:6)

通过使用grep命令,您可以实现预期的目标

grep -rlnw '/path/to/somewhere/' -e '0774386850'
-r or -R is recursive,
-n is line number, and
-w stands for match the whole word.
-l (lower-case L) file name of matching files.

答案 1 :(得分:0)

您可以使用 grep / fgrep 查找来实现目标。

答案 2 :(得分:0)

grep -r“0774386850”/ path / to / dir