Text-Processing

如何使用 grep 計算空行

  • September 8, 2019

我有一個文本文件。有些行包含文本,而有些則不包含(只是沒有任何空格或字元的空行:

123

// comment
45

如您所見,上面有一行//comment。如果我想計算我的文件中存在這樣的行的次數,我該如何 grep 它們?

您可以使用 grep 空行grep '^$' file並使用 計算行數wc -l。結合起來就是:

grep '^$' file | wc -l

甚至更短grep的計數選項-c--count

grep -c '^$' file

引用自:https://unix.stackexchange.com/questions/539706