find . -name "*.h" -o -name "*.cpp" | xargs grep "#define CFL_VERSION_LEN"
等价
grep -r "#define CFL_VERSION_LEN" --include="*.h" --include="*.cpp" .
find . -name "*.h" -o -name "*.cpp" | xargs grep "#define CFL_VERSION_LEN"
等价
grep -r "#define CFL_VERSION_LEN" --include="*.h" --include="*.cpp" .