1、添加序列号
[root@localhost srv]# more darren.txt
a
b
c

d
e
[root@localhost srv]# nl -v 1(开始序列号)  darren.txt
     1    a
     2    b
     3    c
      
     4    d
     5    e

[root@localhost srv]# awk 'BEGIN{line=1}{printf "%s  %s\n",line,$0;line++}' darren.txt
1  a
2  b
3  c

5  d
6  e
====================================================================