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 numeric function int ?
What are Trigonometric Functions in AWK?
What is RS in AWK?
What is the use of systime function?
Write a command to print zero byte size files?
Write a command to find the total number of lines in a file without using nr?
What is the use of sequence ?
What is the use of ARGV ?
What are Arithmetic Expressions in AWK?
In the text file, some lines are delimited by colon and some are delimited by space. Write a command to print the third field of each line.?
What is the use of string function split(string,array,separator)in AWK?
What is the use of string function gensub(r,s,h [,t])?