微信扫一扫
从当前目录递归查找文件名为 .py 中包含 conf 的文件名:
.py
conf
find -name "*.py" | xargs grep "conf"
相关推荐