|
|
If you make an error in your awk program, you generally get an error message. For example, trying to run the program
$3 < 200 { print ( $1 }generates the error messages
Some errors may be detected while your program is running. For example, if you try to divide a number by zero, awk stops processing and reports the input record number (NR) and the line number in the program.