Count number of blank lines in a file

前端 未结 7 923
抹茶落季
抹茶落季 2021-02-01 01:38

In count (non-blank) lines-of-code in bash they explain how to count the number of non-empty lines.

But is there a way to count the number of blank lines in a file? By

7条回答
  •  逝去的感伤
    2021-02-01 02:25

    Another way is:

    grep -cvP '\S' file
    
    • -P '\S'(perl regex) will match any line contains non-space
    • -v select non-matching lines
    • -c print a count of matching lines

    If your grep doesn't support -P option, please use -E '[^[:space:]]'

提交回复
热议问题