使用 grep 从列表中选择与任何单词匹配的行
如果单词列表中至少出现一个元素,grep
可以选取行吗?例如,
grep "hello world" file1
grep
必须给我所有包含单词 hello
或单词 world
或两者兼而有之的行。
Can grep
pick lines if at least one element from a list of words appeared? For example
grep "hello world" file1
grep
must give me all lines which have either the word hello
or the word world
or both of them.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
将您的模式放入某个文件patterns.txt中,每行一个模式,然后运行
put your patterns in some file patterns.txt, one pattern per line, and run
顺便说一下,
这是一个递归
grep
。它在 file1 中递归搜索术语“hello world”。它也可以应用于目录,如下所示:How about
That's a recursive
grep
by the way. It searches recursively for the term "hello world" in file1. It can also apply to a directory like so:试试这个,
输出是
或
Try this,
output is
or