当我想在整个树中搜索某些内容时,我使用
find . -type f -print0 | xargs -0 grep <search_string>
在性能或简洁方面有没有更好的方法来做到这一点?
grep find
find ×1
grep ×1