Shell腳本統(tǒng)計(jì)文件行數(shù)的方法
******************Shell腳本統(tǒng)計(jì)文件行數(shù)的方法***********
獲取單個(gè)文件行數(shù),文件:test.sh,行數(shù):5。
[root@BLJ JD]# awk '{print NR}' test.sh|tail -n1
5
[root@BLJ JD]# awk 'END{print NR}' test.sh
5
[root@BLJ JD]# grep -n "" test.sh|awk -F: '{print '}|tail -n1
5:5
[root@BLJ JD]# sed -n '$=' test.sh
5
[root@BLJ JD]# wc -l test.sh #行數(shù)-1
4 test.sh
[root@BLJ JD]# cat test.sh |wc -l #行數(shù)-1
4
***********************************************************
標(biāo)簽: