当前位置:网站首页>shell脚本快速统计项目代码行数
shell脚本快速统计项目代码行数
2022-07-06 17:51:00 【絔离】
需求
最近突然想看看正在开发的项目一共有多少行代码,但是项目又比较大,手动去计算太麻烦了。就想到了shell脚本,只用给它一个路径,等待脚本统计结果即可。
实现思路
1、获取给定路径下的全部文件
2、判断文件是目录还是普通文件,如果是目录,继续遍历;如果是普通文件,下一步
3、判断文件类型,根据文件后缀名判断即可,如c++源码的后缀名有.h和.cpp
4、计算匹配的文件行数,累加即可
demo
#!/bin/bash
# 定义全局变量,计算总行数
line=0
# function listFiles:获取指定路径下的源码总行数
# $1 全路径
# $2 分隔符,用于显示多级目录的缩进效果
function listFiles()
{
echo "path:$1"
for file in $(ls $1)
do
# 如果是文件夹继续遍历
if [ -d $file ]; then
echo "$file is dir"
listFiles $1/$file " $2"
else
# 此处可以修改为java、py等等想要统计的文件后缀名
if [ ${file##*.} == "h" -o ${file##*.} == "cpp" ];then
echo " $2" "$1/$file line:$(wc -l $1/$file | awk '{print $1}')"
# 累加
let line+=$(wc -l $1/$file | awk '{print $1}')
echo "current line:$line"
fi
fi
done
}
listFiles $1 ""
echo "total line:$line"
效果
验证结果
可以看出,shell脚本计算的.h和.cpp文件行数都是正确的。可以修改文件后缀名去统计不同的源码行数,coding的乐趣也在于此吧,哈哈去计算项目源码有多大了~
边栏推荐
- UI control telerik UI for WinForms new theme - vs2022 heuristic theme
- Vocabulary in Data Book
- Google发布安全更新,修复Chrome中已被利用的0 day
- C # method of calculating lunar calendar date 2022
- [chip scheme design] pulse oximeter
- 2022 Google CTF SEGFAULT LABYRINTH wp
- 云呐|工单管理软件,工单管理软件APP
- Yunna | work order management measures, how to carry out work order management
- [100 cases of JVM tuning practice] 05 - Method area tuning practice (Part 2)
- C语言实例_5
猜你喜欢
字节P7专业级讲解:接口测试常用工具及测试方法,福利文
LeetCode:1175. 质数排列
2022 Google CTF segfault Labyrinth WP
阿里云中mysql数据库被攻击了,最终数据找回来了
Segmenttree
c语言—数组
JS reverse -- ob confusion and accelerated music that poked the [hornet's nest]
Dynamic planning idea "from getting started to giving up"
[Niuke] b-complete square
Let's see through the network i/o model from beginning to end
随机推荐
Sword finger offer II 035 Minimum time difference - quick sort plus data conversion
c语言—数组
免费白嫖的图床对比
Informatics Orsay Ibn YBT 1172: find the factorial of n within 10000 | 1.6 14: find the factorial of n within 10000
【案例分享】网络环路检测基本功能配置
剑指 Offer II 035. 最小时间差-快速排序加数据转换
Match VIM from zero (0) -- Introduction to vimscript
UI control telerik UI for WinForms new theme - vs2022 heuristic theme
Let's see through the network i/o model from beginning to end
AI automatically generates annotation documents from code
Tensorflow GPU installation
NEON优化:关于交叉存取与反向交叉存取
[hfctf2020]babyupload session parsing engine
Send template message via wechat official account
Typical problems of subnet division and super network construction
THREE.AxesHelper is not a constructor
黑马笔记---异常处理
Meet in the middle
golang中的atomic,以及CAS操作
tansig和logsig的差异,为什么BP喜欢用tansig