Linux shell統計代碼行數及統計代碼字數命令


統計代碼有多少行?

find ./source -type f | xargs awk 'END{print NR}'
#或者
find ./source -name "*[.h|.cpp]" | xargs awk 'END{print NR}'

統計代碼有多少字?

find ./source -type f | xargs wc -m
#或者
find ./source -name "*[.h|.cpp]" | xargs wc -m


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM