*** empty log message ***
This commit is contained in:
2
ase/test/awk/emp-021.awk
Normal file
2
ase/test/awk/emp-021.awk
Normal file
@ -0,0 +1,2 @@
|
||||
{ names = names $1 " "; }
|
||||
END { print names; }
|
2
ase/test/awk/emp-022.awk
Normal file
2
ase/test/awk/emp-022.awk
Normal file
@ -0,0 +1,2 @@
|
||||
{ last = $0; }
|
||||
END { print last; }
|
1
ase/test/awk/emp-023.awk
Normal file
1
ase/test/awk/emp-023.awk
Normal file
@ -0,0 +1 @@
|
||||
{ print $1, length($1); }
|
4
ase/test/awk/emp-024.awk
Normal file
4
ase/test/awk/emp-024.awk
Normal 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
6
ase/test/awk/emp.data
Normal 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
|
Reference in New Issue
Block a user