Query: awk
OS: hpux
Section: 1
Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar
awk(1) General Commands Manual awk(1)NAMEawk - pattern-directed scanning and processing languageSYNOPSISfs] ] [program | progfile ...] [file ...]DESCRIPTIONscans each input file for lines that match any of a set of patterns specified literally in program or in one or more files specified as progfile. With each pattern there can be an associated action that is to be performed when a line in a file matches the pattern. Each line is matched against the pattern portion of every pattern-action statement, and the associated action is performed for each matched pat- tern. The file name means the standard input. Any file of the form is treated as an assignment, not a filename. An assignment is evalu- ated at the time it would have been opened if it were a filename, unless the option is used. An input line is made up of fields separated by white space, or by regular expression The fields are denoted ...; refers to the entire line. Options recognizes the following options and arguments: Specify regular expression used to separate fields. The default is to recognize space and tab characters, and to discard leading spaces and tabs. If the option is used, leading input field separators are no longer discarded. Specify an awk program file. Up to 100 program files can be specified. The pattern-action statements in these files are executed in the same order as the files were specified. Cause assignment to occur before the action (if it exists) is executed. Statements A pattern-action statement has the form: A missing means print the line; a missing pattern always matches. Pattern-action statements are separated by new-lines or semicolons. An action is a sequence of statements. A statement can be one of the following: if(expression) statement [ else statement ] while(expression) statement for(expression;expression;expression) statement for(var in array) statement do statement while(expression) break continue {[statement ...]} expression # commonly var = expression print [expression-list] [ > expression] printf format [, expression-list] [ > expression] return [expression] next # skip remaining patterns on this input line. delete array [expression] # delete an array element. exit [expression] # exit immediately; status is expression. Statements are terminated by semicolons, newlines or right braces. An empty expression-list stands for String constants are quoted with the usual C escapes recognized within. Expressions take on string or numeric values as appropriate, and are built using the operators (exponentiation), and concatenation (indicated by a blank). The operators (double quotes, string conversion operator), and are also avail- able in expressions. Variables can be scalars, array elements (denoted ) or fields. Variables are initialized to the null string. Array subscripts can be any string, not necessarily numeric (this allows for a form of associative memory). Multiple subscripts such as are per- mitted. The constituents are concatenated, separated by the value of The statement prints its arguments on the standard output (or on a file if or is present or on a pipe if is present), separated by the cur- rent output field separator, and terminated by the output record separator. file and cmd can be literal names or parenthesized expres- sions. Identical string values in different statements denote the same open file. The statement formats its expression list according to the format (see printf(3S)). Built-In Functions The built-in function closes the file or pipe opened by a or statement or a call to with the same string-valued expr. This function returns zero if successful, otherwise, it returns non-zero. The customary functions are built in. Other built-in functions are: Length of its associated argument (in bytes) taken as a string, or of if no argument. Length of its associated argument (in characters) taken as a string, or of if no argument. Returns a random number between zero and one. Sets the seed value for rand, and returns the previous seed value. If no argument is given, the time of day is used as the seed value; other- wise, expr is used. Truncates to an integer value Return the at most n-character substring of s that begins at position m, numbering from 1. If n is omitted, the substring is limited by the length of string s. Return the position, in characters, numbering from 1, in string s where string t first occurs, or zero if it does not occur at all. Return the position, in characters, numbering from 1, in string s where the extended regular expression ere occurs, or 0 if it does not. The variables and are set to the position and length of the matched string. Splits the string s into array elements , , ..., , and returns n. The separation is done with the regular expression fs, or with the field separator if fs is not given. Substitutes repl for the first occurrence of the extended regular expression ere in the string in. If in is not given, is used. Same as except that all occurrences of the regular expression are replaced; and return the number of replacements. String resulting from formatting expr ... according to the printf(3S) format fmt Executes cmd and returns its exit status Converts the argument string s to uppercase and returns the result. Converts the argument string s to lowercase and returns the result. The built-in function sets to the next input record from the current input file; sets to the next record from file. x sets variable x instead. Finally, pipes the output of cmd into each call of returns the next line of output from cmd. In all cases, returns 1 for a suc- cessful input, 0 for end of file, and -1 for an error. Patterns Patterns are arbitrary Boolean combinations (with of regular expressions and relational expressions. supports Extended Regular Expressions as described in regexp(5). Isolated regular expressions in a pattern apply to the entire line. Regular expressions can also occur in relational expressions, using the operators and is a constant regular expression; any string (constant or variable) can be used as a regu- lar expression, except in the position of an isolated regular expression in a pattern. A pattern can consist of two patterns separated by a comma; in this case, the action is performed for all lines from an occurrence of the first pattern though an occurrence of the second. A relational expression is one of the following: expression matchop regular-expression expression relop expression where a relop is any of the six relational operators in C, and a matchop is either (matches) or (does not match). A conditional is an arithmetic expression, a relational expression, or a Boolean combination of the two. The special patterns and can be used to capture control before the first input line is read and after the last. and do not combine with other patterns. Special Characters The following special escape sequences are recognized by in both regular expressions and strings: Escape Meaning alert character backspace character form-feed character new-line character carriage-return character tab character vertical-tab character 1- to 3-digit octal value nnn 1- to n-digit hexadecimal number Variable Names Variable names with special meanings are: Input field separator regular expression; a space character by default; also settable by option The number of fields in the current record. The ordinal number of the current record from the start of input. Inside a action the value is zero. Inside an action the value is the number of the last record processed. The ordinal number of the current record in the current file. Inside a action the value is zero. Inside an action the value is the number of the last record processed in the last file processed. A pathname of the current input file. The input record separator; a newline character by default. The statement output field separator; a space character by default. The statement output record separator; a newline character by default. Output format for numbers (default If the value of is not a floating-point format specification, the results are unspecified. Internal conversion format for numbers (default If the value of is not a floating-point format specification, the results are unspecified. Under the UNIX Standard environment (see standards(5)) if is not specified, is used as the internal conversion format for numbers by default. The subscript separator string for multi-dimensional arrays; the default value is "