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

Linux -- 统计文件的行数

时间:2015-10-23 13:11:54      阅读:299      评论:0      收藏:0      [点我收藏+]

标签:

统计单个文件有多少行

方法1:  awk ‘{print NR}‘ test1.sh|tail -n1

方法2:  awk ‘END{print NR}‘ test1.sh

方法3:  grep -n "" test1.sh|awk -F: ‘{print ‘}|tail -n1

方法4:  sed -n ‘$=‘ test1.sh
方法5:  wc -l test1.sh

方法6:  cat test1.sh |wc -l

 

Linux -- 统计文件的行数

标签:

原文地址:http://www.cnblogs.com/roronoa-sqd/p/4904068.html

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