5 lines
76 B
Awk
5 lines
76 B
Awk
BEGIN {
|
|
while (("cat " datadir "/" datafile) | getline x > 0)
|
|
print x
|
|
}
|