#grep -rn "xxxx" ./



#find . -name "*.*" | xargs grep "xxxx"         *.* 这个是文件名.后缀名



#find . -name "*.*" -exec grep "xxxx" {} \;