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