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

6 lines
79 B
Awk
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
BEGIN {
while ( (getline <"input.txt") > 0 ) {
print >"output.txt"
}
}