summaryrefslogtreecommitdiffstats
path: root/skeletons/awk.erb
blob: 86d52a198568946b4cc7ea094de7e1831335ce4c (plain)
1
2
3
4
5
6
7
8
9
<%= header 'awk.hdr' %>

BEGIN { }

{
print "line "NR" has "NF" fields.";
}

END { print "line number : "NR }