1 Star 0 Fork 108

零空/lmosem

forked from lmnos/lmosem 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
codeline.sh 485 Bytes
一键复制 编辑 原始数据 按行查看 历史
LMOS 提交于 2017-03-06 22:02 . 增加了x86hal层
# !/bin/bash
echo "Start......"
echo "LMOS all code line:"
find . -name "*.inc" -o -name "*.asm" -o -name "*.S" -o -name "*.h" -o -name "*.c" | xargs cat|grep -v ^$| wc -l | sort -n
echo "LMOS ASM code line:"
find . -name "*.S" -o -name "*.asm" | xargs cat|grep -v ^$| wc -l | sort -n
echo "LMOS C code line:"
find . -name "*.c" | xargs cat|grep -v ^$| wc -l | sort -n
echo "LMOS H code line:"
find . -name "*.h" -o -name "*.inc" | xargs cat|grep -v ^$| wc -l | sort -n
echo "End!"
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C
1
https://gitee.com/peng_jia_wei/lmosem.git
git@gitee.com:peng_jia_wei/lmosem.git
peng_jia_wei
lmosem
lmosem
master

搜索帮助