qse/ase/test/awk/emp-024.awk

5 lines
119 B
Awk
Raw Normal View History

2006-11-17 07:06:53 +00:00
{ nc = nc + length($0) + 1;
nw = nw + NF;
}
END { print NR, "lines,", nw, "words,", nc, "characters"; }