码迷,mamicode.com
首页 > 系统相关 > 详细

软件著作权申报时,使用Linux系统find命令如何统计项目行数

时间:2020-07-03 19:19:37      阅读:71      评论:0      收藏:0      [点我收藏+]

标签:print   file   命令   案例   linux系统   find   time   php   strong   

软件著作权申报时,使用Linux系统find命令如何统计项目行数


案例:我们查询当前目录下的php,js,css,html文件的代码行数,并忽略./App/Runtime 和 ./Uploads 目录下的文件
find ./ "(" -path "./App/Runtime" -o -path "./Uploads" ")"   -prune -o "(" -name "*.php" -or -name "*.js" -or -name "*.css"  -or -name "*.html"  -or -name "*.css"  ")" -print | xargs wc -l
验证是否忽略了某些目录:
 find ./ "(" -path "./App/Runtime" -o -path "./Api/Runtime" -o -path "./Public/file/App/Runtime" ")"   -prune -o "(" -name "*.php" -or -name "*.js" -or -name "*.css"  -or -name "*.html"  -or -name "*.css"  ")" -print | xargs wc -l |grep Runtime

软件著作权申报时,使用Linux系统find命令如何统计项目行数

标签:print   file   命令   案例   linux系统   find   time   php   strong   

原文地址:https://www.cnblogs.com/qiangshangkeji/p/13232230.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!