find ./  -type f | xargs grep 'abcd'

 

说明:

./  表示当前目录

f   表示文件

‘abcd’   表示搜索的字符串

相关文章: