12 lines
166 B
Bash
12 lines
166 B
Bash
# @TEST-EXEC: awk -f %INPUT <foo.dat >output
|
|
# @TEST-EXEC: btest-diff output
|
|
|
|
{ lines += 1; }
|
|
END { print lines; }
|
|
|
|
@TEST-START-FILE foo.dat
|
|
1
|
|
2
|
|
3
|
|
@TEST-END-FILE
|