请统计代码行数

统计代码行数

1
find mall-imeihao-h5      \( -name '*.js' -o -name '*.json' -o -name '*.wxss' -o -name '*.wxml' \) | xargs cat |grep -v ^$| wc -l
  • .wxml .wxss .json .js 为源码文件扩展名,根据需求替换

需要排除的目录

1
2
3
4
find  mall-imeihao \
\( -path ./web -o -path ./runtime -o -path ./config \) -prune -o \
\( -name "*.php" -o -name "*.js" -o -name "*.css" -o -name "*.scss" \) \
| xargs cat |grep -v ^$| wc -l
  • web runtime config 为需要排除的目录

导入文档

导入文档格式

1
find mall-imeihao-reception  \( -name '*.py'  \) | xargs cat |grep -v ^$| > mall-imeihao-reception.docx