1.在开发工作目录,合并各类别代码 find . -name ".json" -o -name ".php" -o -name "*.js" | xargs cat > all.code
2.统计代码行数
$wc -l all.code
3.截取头部1500行代码
head -n 1500 filename
4.截取尾部代码
tail -n 1500 filename
posted on 2020-06-17 17:13 月光的礼物 阅读(193) 评论(0) 编辑 收藏 举报