*** empty log message ***

This commit is contained in:
2006-11-17 07:06:53 +00:00
parent a926eb0ae7
commit 4b33fba56f
10 changed files with 80 additions and 17 deletions

2
ase/test/awk/emp-021.awk Normal file
View File

@ -0,0 +1,2 @@
{ names = names $1 " "; }
END { print names; }

2
ase/test/awk/emp-022.awk Normal file
View File

@ -0,0 +1,2 @@
{ last = $0; }
END { print last; }

1
ase/test/awk/emp-023.awk Normal file
View File

@ -0,0 +1 @@
{ print $1, length($1); }

4
ase/test/awk/emp-024.awk Normal file
View File

@ -0,0 +1,4 @@
{ nc = nc + length($0) + 1;
nw = nw + NF;
}
END { print NR, "lines,", nw, "words,", nc, "characters"; }

6
ase/test/awk/emp.data Normal file
View File

@ -0,0 +1,6 @@
Beth 4.00 0
Dan 3.74 0
Kathy 4.00 10
Mark 5.00 20
Mary 5.50 22
Susie 4.25 18