0

嘿伙计们,我只是想看看是否有人可以帮助我。我正在尝试递归搜索目录以查找以 .poem 作为扩展名并在其中包含“I”的文件。

当我做

grep -r -e --include *.poem I

我什么都没有出现

4

2 回答 2

1

仅返回文件名:

 grep -r -H "I" yourdir --include *.poem | cut -d: -f1 | uniq -u

用目录替换 yourdir。

于 2013-04-10T22:36:53.813 回答
1
grep --include "*.poem" -R I .
于 2013-04-10T22:28:11.557 回答