gpt4 book ai didi

Bash Grep 精确搜索

转载 作者:行者123 更新时间:2023-12-03 09:28:10 24 4
gpt4 key购买 nike

我正在尝试在文件中查找确切的单词。这个词是 myServer,我试图在其中找到它的文件内容是:

This is myServer and it is cool
This is myServer-test and it is cool

以下是我为此进行的各种尝试的结果:

grep '^myServer$' test-file.txt
grep -Fx myServer test-file.txt

--> no results

grep -w myServer test-file.txt
grep -w myServer test-file.txt
grep '\<myServer\>' test-file.txt
grep '\bmyServer\b' test-file.txt
-->
This is myServer and it is cool
This is myServer-test and it is cool

我这里缺少一些开关吗?

非常感谢。

最佳答案

尝试使用单词边界进行 grep:

 grep '\<myServer\>' test-file.txt

编辑:看起来您不想将连字符视为单词边界。使用 grep 来达到此目的:

grep -E '\<myServer\>([^-]|$)'  test-file.txt

关于Bash Grep 精确搜索,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15816796/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com