Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
对于 HTML、CSS 和 JavaScript 文件,在源目录上运行并获取 KSLOC 的好工具是什么?
grep -v -P "^\s*$" -R dir/ | wc -l
为您提供忽略空白行的行数。
wc -l是一个好的开始。
wc -l