Sun Microsystems, Inc. gratefully acknowledges The Open Group for
permission to reproduce portions of its copyrighted documentation.
Original documentation from The Open Group can be obtained online at
http://www.opengroup.org/bookstore/.
The Institute of Electrical and Electronics Engineers and The Open
Group, have given us permission to reprint portions of their
documentation.
In the following statement, the phrase ``this text'' refers to portions
of the system documentation.
Portions of this text are reprinted and reproduced in electronic form
in the SunOS Reference Manual, from IEEE Std 1003.1, 2004 Edition,
Standard for Information Technology -- Portable Operating System
Interface (POSIX), The Open Group Base Specifications Issue 6,
Copyright (C) 2001-2004 by the Institute of Electrical and Electronics
Engineers, Inc and The Open Group. In the event of any discrepancy
between these versions and the original IEEE and The Open Group
Standard, the original IEEE and The Open Group Standard is the referee
document. The original Standard can be obtained online at
http://www.opengroup.org/unix/online.html.
This notice shall appear on any product containing this material.
The contents of this file are subject to the terms of the
Common Development and Distribution License (the "License").
You may not use this file except in compliance with the License.
You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
or http://www.opensolaris.org/os/licensing.
See the License for the specific language governing permissions
and limitations under the License.
When distributing Covered Code, include this CDDL HEADER in each
file and include the License file at usr/src/OPENSOLARIS.LICENSE.
If applicable, add the following below this CDDL HEADER, with the
fields enclosed by brackets "[]" replaced with your own identifying
information: Portions Copyright [yyyy] [name of copyright owner]
Copyright 1989 AT&T
Portions Copyright (c) 1992, X/Open Company Limited. All Rights Reserved.
Copyright (c) 2005, Sun Microsystems, Inc. All Rights Reserved
Copyright 2020 Joyent, Inc.
/usr/bin/oawk [-f progfile] [-Fc] [' prog '] [parameters] [filename]...
The /usr/bin/oawk utility scans each input filename for lines that match any of a set of patterns specified in prog. The prog string must be enclosed in single quotes ( a\') to protect it from the shell. For each pattern in prog there can be an associated action performed when a line of a filename matches the pattern. The set of pattern-action statements can appear literally as prog or in a file specified with the -f progfile option. Input files are read in order; if there are no files, the standard input is read. The file name '-' means the standard input.
oawk uses the set of patterns it reads from progfile.
Uses the character c as the field separator (FS) character. See the discussion of FS below.
An input line is normally made up of fields separated by white spaces. (This default can be changed by using the FS built-in variable or the -Fc option.) The default is to ignore leading blanks and to separate fields by blanks and/or tab characters. However, if FS is assigned a value that does not include any of the white spaces, then leading blanks are not ignored. The fields are denoted $1, $2, .\|.\|.\|; $0 refers to the entire line.
pattern { action }
Either pattern or action can be omitted. If there is no action, the matching line is printed. If there is no pattern, the action is performed on every input line. Pattern-action statements are separated by newlines or semicolons.
Patterns are arbitrary Boolean combinations ( !, ||, &&, and parentheses) of relational expressions and regular expressions. A relational expression is one of the following:
expression relop expression
expression matchop regular_expression
where a relop is any of the six relational operators in C, and a matchop is either ~ (contains) or !~ (does not contain). An expression is an arithmetic expression, a relational expression, the special expression
var in array
or a Boolean combination of these.
Regular expressions are as in egrep(1). In patterns they must be surrounded by slashes. Isolated regular expressions in a pattern apply to the entire line. Regular expressions can also occur in relational expressions. A pattern can consist of two patterns separated by a comma; in this case, the action is performed for all lines between the occurrence of the first pattern to the occurrence of the second pattern.
The special patterns BEGIN and END can be used to capture control before the first input line has been read and after the last input line has been read respectively. These keywords do not combine with any other patterns.
name of the current input file
input field separator regular expression (default blank and tab)
number of fields in the current record
ordinal number of the current record
output format for numbers (default %.6g)
output field separator (default blank)
output record separator (default new-line)
input record separator (default new-line)
An action is a sequence of statements. A statement can be one of the following:
if ( expression ) statement [ else statement ] while ( expression ) statement do statement while ( expression ) for ( expression ; expression ; expression ) statement for ( var in array ) statement break continue { [ statement ] .\|.\|. } expression # commonly variable = expression print [ expression-list ] [ >expression ] printf format [ ,expression-list ] [ >expression ] next # skip remaining patterns on this input line exit [expr] # skip the rest of the input; exit status is expr
Statements are terminated by semicolons, newlines, or right braces. An empty expression-list stands for the whole input line. Expressions take on string or numeric values as appropriate, and are built using the operators +, -, *, /, %, ^ and concatenation (indicated by a blank). The operators ++, --, +=, -=, *=, /=, %=, ^=, >, >=, <, <=, ==, !=, and ?: are also available in expressions. Variables can be scalars, array elements (denoted x[i]), or fields. Variables are initialized to the null string or zero. Array subscripts can be any string, not necessarily numeric; this allows for a form of associative memory. String constants are quoted (""), with the usual C escapes recognized within.
The print statement prints its arguments on the standard output, or on a file if >expression is present, or on a pipe if '|cmd' is present. The output resulted from the print statement is terminated by the output record separator with each argument separated by the current output field separator. The printf statement formats its expression list according to the format (see printf(3C)).
Return the exponential function of x.
Return the natural logarithm of x.
Return the square root of x.
Truncate its argument to an integer. It is truncated toward 0 when x > 0.
The string functions are as follows: index(s, t)
Return the position in string s where string t first occurs, or 0 if it does not occur at all.
truncates s to an integer value. If s is not specified, $0 is used.
Return the length of its argument taken as a string, or of the whole line if there is no argument.
Split the string s into array elements a[1], a[2], \|.\|.\|. a[n], and returns n. The separation is done with the regular expression fs or with the field separator FS if fs is not given.
Format the expressions according to the printf(3C) format given by fmt and returns the resulting string.
returns the n-character substring of s that begins at position m.
The input/output function is as follows: getline
Set $0 to the next input record from the current input file. getline returns 1 for successful input, 0 for end of file, and -1 for an error.
The following example is an oawk script that can be executed by an oawk -f examplescript style command. It prints lines longer than seventy two characters:
length > 72
Example 2 Printing Fields in Opposite Order
The following example is an oawk script that can be executed by an oawk -f examplescript style command. It prints the first two fields in opposite order:
{ print $2, $1 }
Example 3 Printing Fields in Opposite Order with the Input Fields Separated
The following example is an oawk script that can be executed by an oawk -f examplescript style command. It prints the first two input fields in opposite order, separated by a comma, blanks or tabs:
BEGIN { FS = ",[ \et]*|[ \et]+" }
{ print $2, $1 }
Example 4 Adding Up the First Column, Printing the Sum and Average
The following example is an oawk script that can be executed by an oawk -f examplescript style command. It adds up the first column, and prints the sum and average:
{ s += $1 }
END { print "sum is", s, " average is", s/NR }
Example 5 Printing Fields in Reverse Order
The following example is an oawk script that can be executed by an oawk -f examplescript style command. It prints fields in reverse order:
{ for (i = NF; i > 0; --i) print $i }
Example 6 Printing All lines Between start/stop Pairs
The following example is an oawk script that can be executed by an oawk -f examplescript style command. It prints all lines between start/stop pairs.
/start/, /stop/
Example 7 Printing All Lines Whose First Field is Different from the Previous One
The following example is an oawk script that can be executed by an oawk -f examplescript style command. It prints all lines whose first field is different from the previous one.
$1 != prev { print; prev = $1 }
Example 8 Printing a File and Filling in Page numbers
The following example is an oawk script that can be executed by an oawk -f examplescript style command. It prints a file and fills in page numbers starting at 5:
/Page/ { $2 = n++; }
{ print }
Example 9 Printing a File and Numbering Its Pages
Assuming this program is in a file named prog, the following example prints the file input numbering its pages starting at 5:
example% oawk -f prog n=5 input
Determine the radix character used when interpreting numeric input, performing conversions between numeric and string values and formatting numeric output. Regardless of locale, the period character (the decimal-point character of the POSIX locale) is the decimal-point character recognized in processing oawk programs (including assignments in command-line arguments).
ATTRIBUTE TYPE ATTRIBUTE VALUE |
CSI Not Enabled |
There are no explicit conversions between numbers and strings. To force an expression to be treated as a number, add 0 to it. To force an expression to be treated as a string, concatenate the null string ("") to it.