Files
hpr_website/www/eps/hpr2129/hpr2129_example2.awk

6 lines
114 B
Awk
Raw Normal View History

2025-10-28 18:39:57 +01:00
#!/usr/bin/awk -f
#
# Print all but line 1 with the line number on the front
#
NR > 1 { printf "%d: %s\n",NR,$0 }