欢迎各位兄弟 发布技术文章

这里的技术是共享的

You are here

shell获取文件总行数的6中方法 有大用


  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



来自   https://blog.csdn.net/u012957549/article/details/87909802

普通分类: