当前位置: 技术问答>linux和unix
如何在所有的.py .txt .cpp文件 中grep “abc”和“123”两个字符串?
来源: 互联网 发布时间:2017-03-14
本文导语: 如何在所有的.py .txt .cpp文件 中grep “abc”和“123”两个字符串? | 不好意思! 手误了,试试下面这个: find . -name "*.py" -o -name "*.txt" -o -name "*.cpp" | xargs grep -E "abc|123"
如何在所有的.py .txt .cpp文件 中grep “abc”和“123”两个字符串?
|
不好意思! 手误了,试试下面这个:
find . -name "*.py" -o -name "*.txt" -o -name "*.cpp" | xargs grep -E "abc|123"