|
|
The name awk is an acronym formed from the initials of its developers. The name awk denotes both the language and the SCO OpenServer system command you use to run an awk program.
awk is an easy language to learn. It automatically does many things that in other languages you have to program yourself. As a result, many useful awk programs are only one or two lines long. Because awk programs are usually smaller than equivalent programs in other languages, and because they are interpreted, not compiled, awk is also a good language for prototyping.
The first part of this topic introduces you to the basics of awk and is intended to make it easy for you to start writing and running your own awk programs. The rest of the topic describes the complete language and is somewhat less tutorial. If you are an experienced awk user, you will find the skeletal summary of the language at the end of the topic particularly useful.
You should be familiar with the SCO OpenServer system and shell programming to use awk. Although you do not need other programming experience, some knowledge of the C programming language is beneficial because many constructs found in awk are also found in C.