Administrator
发布于 2025-12-08 / 6 阅读
0
0

工作中常用命令零散记录

find . -name "*.h" -o -name "*.cpp" | xargs grep "#define CFL_VERSION_LEN"

等价

grep -r "#define CFL_VERSION_LEN" --include="*.h" --include="*.cpp" .


评论