Skip to content
统计项目代码总行数
2025年7月11日 root

windows

powershell
(Get-ChildItem -Recurse -Include *.js,*.py,*.html,*.css | Select-String .).Count

linux

bash
find . -name "*.js" -o -name "*.py" -o -name "*.html" -o -name "*.css" | xargs cat | grep -v '^\s*$' | wc -l
  • *.js,*.py 等为你需要的文件扩展名
  • grep -v '^\s*$' 用于过滤空行

Last updated: