是否有一种方法使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吗?或者使用另一种工具组合?