Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
嘿伙计们,我只是想看看是否有人可以帮助我。我正在尝试递归搜索目录以查找以 .poem 作为扩展名并在其中包含“I”的文件。
当我做
grep -r -e --include *.poem I
我什么都没有出现
仅返回文件名:
grep -r -H "I" yourdir --include *.poem | cut -d: -f1 | uniq -u
用目录替换 yourdir。
grep --include "*.poem" -R I .