一次性列出所有匹配文件:find ./ -type f -print0 | xargs -0 sh -c ' for file do strings "$file" | grep -qE "Helloworld|Laitai.top" && echo "$file" done ' sh 或者find .|xargs grep -ri "Helloword" -l