RosettaCodeData/Task/File-input-output/AWK/file-input-output.awk

6 lines
79 B
Awk
Raw Permalink Normal View History

2013-04-10 21:29:02 -07:00
BEGIN {
while ( (getline <"input.txt") > 0 ) {
print >"output.txt"
}
}