Hi,
when i execute the following
line, its prints the words in newline.
awk 'BEGIN { print "
line one\nline two\nline three" }'
like
line one
line two
line three
How can i print the info in the same
line with flush the existing
line. For example, while executing the loop, it should print 'one' then wipe out
…