Quote:
Can any one guide me to how can I locate position of AWK output text in specific (raw, col) all the time. i.e. I want to override auto scrolling feature .
|
The 'auto scrolling' feature is your shell NOT awk. Why don't you pipe the output from awk into 'more' or redirect your output to a file and view it from there?
awk '{doStuff}' yourFile | more
awk '{doStuff}' yourFile > newFile