6 lines
114 B
Awk
6 lines
114 B
Awk
|
|
#!/usr/bin/awk -f
|
||
|
|
#
|
||
|
|
# Print all but line 1 with the line number on the front
|
||
|
|
#
|
||
|
|
NR > 1 { printf "%d: %s\n",NR,$0 }
|