为了账号安全,请及时绑定邮箱和手机立即绑定

请问grep只能显示匹配搜索模式的单词吗?

请问grep只能显示匹配搜索模式的单词吗?

白衣非少年 2019-08-02 07:02:39
grep只能显示匹配搜索模式的单词吗?是否有办法使grep输出与搜索表达式匹配的文件中的“单词”?如果我想在多个文件中找到“th”的所有实例,我可以这样做:grep "th" *但是输出将是类似的(粗体是由我);some-text-file : the cat sat on the mat   some-other-text-file : the quick brown fox   yet-another-text-file : i hope this explains it thoroughly使用相同的搜索,我希望它输出的是:the the the this thoroughly这有可能使用grep吗?还是使用另一种组合的工具?
查看完整描述

3 回答

?
芜湖不芜

TA贡献1796条经验 获得超7个赞

试试grep-o

grep -oh "\w*th\w*" *

编辑:与菲尔的评论相匹配

从…医生:

-h, --no-filename
    Suppress the prefixing of file names on output. This is the default
    when there is only  one  file  (or only standard input) to search.
-o, --only-matching
    Print  only  the matched (non-empty) parts of a matching line,
    with each such part on a separate output line.




查看完整回答
反对 回复 2019-08-03
?
炎炎设计

TA贡献1808条经验 获得超4个赞

只是awk不需要工具的组合。

# awk '{for(i=1;i<=NF;i++){if($i~/^th/){print $i}}}' file
the
the
the
this
thoroughly



查看完整回答
反对 回复 2019-08-03
  • 3 回答
  • 0 关注
  • 426 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信