查询file里面空行的所在行号
grep -n "^$" file
操作如下:
[root@t-enter tmp]# grep -n ^$ yq.log
4:
7:
9:
[root@t-enter tmp]# cat yq.log
1
2
3
5
6
8
10
[root@t-enter tmp]#
2021-10-30 06:28:41
查询file里面空行的所在行号
grep -n "^$" file
操作如下:
[root@t-enter tmp]# grep -n ^$ yq.log
4:
7:
9:
[root@t-enter tmp]# cat yq.log
1
2
3
5
6
8
10
[root@t-enter tmp]#