AWK programming languageAWK is a general purpose computer language that is designed for processing text based data, either in files or data streams. The name AWK is derived from the surnames of its authors -- Alfred V. Aho, Peter J. Weinberger, and Brian W. Kernighan. Awk is an example of a programming language that extensively uses the string datatype, associative arrays (that is, arrays indexed by key strings), and regular expressions. Awk is one of the early tools to appear in Version 3 UNIX and gained popularity as a way to add computational features to a UNIX pipeline.\nA version of awk is a standard feature of nearly every modern Unix-like operating system available today. Implementations of awk exist as installed software for almost all other operating systems.
/pattern/ { action }
where pattern is a regular expression and action is a command. Awk looks through the input file; when it finds a line that matches pattern, it executes the command(s) specified in action. Alternate line forms include:
; BEGIN { action }\n: Executes action commands at the beginning of the script execution, i.e., before any of the lines are processed.\n; END { action }\n: Similar to the previous form, but executes action after the script execution.\n; /pattern/\n: Prints any lines matching pattern.\n; { action }\n: Executes action for each line in the input.
Each of these forms can be included multiple times in the command file. Lines in the command file are executed in order, so if there are two "BEGIN" statements, the first is executed, then the second, and then the rest of the lines. BEGIN and END statements do not have to be located before and after (respectively) the other lines in the command file.
Awk commands\nAwk commands are the statement that is substituted for action in the examples above. Awk commands can include function calls, variable assignments, calculations, or any combination thereof. Awk contains built-in support for many functions; many more are provided by the various flavors of awk. Also, some flavors support the inclusion of dynamically linked libraries, which can also provide more functions. For brevity, the enclosing curly braces ( { } ) will be omitted from these examples.The print command\nThe print command is used to display text to the output device (usually a monitor, though often a file or \noutput stream as well). The simplest form of this command isprint 3+2\n print foobar(3)\n print foobar(variable)\n print sin(3-2) Variables, et cetera\nVariable names can use any of the characters [A-Za-z0-9_], with the exception of language keywords. The operators + - * / are addition, subtraction, multiplication, and division, respectively. For string concatenation, simply place two variables (or string constants) next to each other, optionally with a space in between. String constants are delimited by double quotes. Statements need not end with semicolons. Finally, comments can be added to programs by using # as the first character on a line.User-defined functions\nIn a format similar to C, function declarations consist of the function name and arguments to the function. Here is an example function:function add_three (number) {\n temp = number + 3\n return temp\n }
This statement can be invoked as follows:
print add_three(36) # prints 39Functions can have variables that are in the local scope. The names of these are added to the end of the argument list, though values for these should be omitted when calling the function. It is convention to add some whitespace in the argument list before the local variables, in order to indicate where the parameters end and the local variables begin. A free GNU version of awk is named gawk. Documentation and downloads are available at [1]. comp.lang.awk is a USENET newsgroup dedicated to awk. The power, terseness, and limitations of awk programs and sed scripts inspired Larry Wall to write Perl. \n External links\n*The AWK Programming Language book's webpage\n*GAWK (GNU Awk) webpage\n*The GNU Awk User's Guide as a very large webpage\n*DJGPP port of Gawk 3.11b as a downloadable 768KB zipfile \n\n\n\n\n\n |
||||
"Wagner's music is better than it sounds." - Mark Twain (1835-1910) |
