linux查找内容

find . -type f | xargs grep '要查找的内容'

find . -type f -name "*.csv" -o -name "*.json" | xargs grep '15010*' -l

原文地址:https://www.cnblogs.com/maidongdong/p/15026247.html