What is the Basic Structure of AWK program?
Answer / pinky shan
BEGIN { print "START" }
{ print }
END { print "STOP" }
| Is This Answer Correct ? | 0 Yes | 0 No |
What is the use of format specifier %c ?
What is the use of format specifier %e ?
What is NF in AWK?
What is the use of string function sub(regex,replacement)?
What is the use of ARGIND?
Write a command to find the sum of bytes (size of file) of all files in a directory?
What is the use of format specifier %% ?
Write a command to print the fields in a text file in reverse order?
Write a command to print first and last line using sed command?
What is the use of sequence ?
What is the use of numeric function cos ?
Write a command to print the squares of numbers from 1 to 10 using awk command?