查找包含字符串DEBUG的文件: 1. grep -l "DEBUG" `find -type f -name "*.sh"` 2. find . -type f -exec grep -l "DEBUG" {} \;