forked from onetrueawk/awk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
awk.1.txt
369 lines (246 loc) · 11.3 KB
/
awk.1.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
AWK
NAME
awk - pattern-directed scanning and processing language
SYNOPSIS
awk [ -F fs | - -csv ] [ -v var=value ] [ 'prog' | -f progfile ] [ file
... ]
DESCRIPTION
Awk scans each input file for lines that match any of a set of patterns
specified literally in prog or in one or more files specified as -f
progfile. With each pattern there can be an associated action that will
be performed when a line of a file matches the pattern. Each line is
matched against the pattern portion of every pattern-action statement;
the associated action is performed for each matched pattern. The file
name - means the standard input. Any file of the form var=value is
treated as an assignment, not a filename, and is executed at the time it
would have been opened if it were a filename. The option -v followed by
var=value is an assignment to be done before prog is executed; any
number of -v options may be present. The -F fs option defines the input
field separator to be the regular expression fs. The - -csv option
causes awk to process records using (more or less) standard
comma-separated values (CSV) format.
An input line is normally made up of fields separated by white space, or
by the regular expression FS. The fields are denoted $1, $2, ..., while
$0 refers to the entire line. If FS is null, the input line is split
into one field per character.
A pattern-action statement has the form:
pattern { action"}
A missing { action } means print the line; a missing pattern always
matches. Pattern-action statements are separated by newlines 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
nextfile # skip rest of this file, open next, start at top
delete array[ expression ] # delete an array element
delete array # delete all elements of array
exit [ expression ] # exit immediately; status is expression
Statements are terminated by semicolons, newlines or right braces. An
empty expression-list stands for $0. 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 white
space). The operators ! ++ -- += -= *= /= %= ^= > >= < <= == != ?: are
also available in expressions. Variables may be scalars, array elements
(denoted x[i]) or fields. Variables are initialized to the null string.
Array subscripts may be any string, not necessarily numeric; this allows
for a form of associative memory. Multiple subscripts such as [i,j,k]
are permitted; the constituents are concatenated, separated by the value
of SUBSEP.
The print statement prints its arguments on the standard output (or on a
file if >"file or >>"file is present or on a pipe if |"cmd is present),
separated by the current output field separator, and terminated by the
output record separator. file and cmd may be literal names or
parenthesized expressions; identical string values in different
statements denote the same open file. The printf statement formats its
expression list according to the format (see printf(3)). The built-in
function close(expr) closes the file or pipe expr. The built-in function
fflush(expr) flushes any buffered output for the file or pipe expr.
The mathematical functions atan2, cos, exp, log, sin, and sqrt are built
in. Other built-in functions:
length([v ])
the length of its argument taken as a string, number of elements in
an array for an array argument, or length of $0 if no argument.
rand()
random number on [0,1).
srand([s ])
sets seed for rand and returns the previous seed.
int(x )
truncates to an integer value.
substr(s, m [, n ])
the n-character substring of s that begins at position m counted
from 1. If no n, use the rest of the string.
index(s, t)
the position in s where the string t occurs, or 0 if it does not.
match(s, r)
the position in s where the regular expression r occurs, or 0 if it
does not. The variables RSTART and RLENGTH are set to the position
and length of the matched string.
split(s, a [, fs ])
splits 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. An empty string as
field separator splits the string into one array element per
character.
sub(r, t [, s ])
substitutes t for the first occurrence of the regular expression r
in the string s. If s is not given, $0 is used.
gsub(r, t [, s ])
same as sub except that all occurrences of the regular expression
are replaced; sub and gsub return the number of replacements.
sprintf(fmt, expr,"...)
the string resulting from formatting expr ... according to the
printf(3) format fmt.
system(cmd)
executes cmd and returns its exit status. This will be -1 upon
error, cmd's exit status upon a normal exit, 256 + sig upon
death-by-signal, where sig is the number of the murdering signal, or
512 + sig if there was a core dump.
tolower(str)
returns a copy of str with all upper-case characters translated to
their corresponding lower-case equivalents.
toupper(str)
returns a copy of str with all lower-case characters translated to
their corresponding upper-case equivalents.
The ``function'' getline sets $0 to the next input record from the
current input file; getline <"file sets $0 to the next record from file.
getline x sets variable x instead. Finally, cmd"|getline pipes the
output of cmd into getline; each call of getline returns the next line
of output from cmd. In all cases, getline returns 1 for a successful
input, 0 for end of file, and -1 for an error.
Patterns are arbitrary Boolean combinations (with ! || &&) of regular
expressions and relational expressions. Regular expressions are as in
egrep; see grep(1). Isolated regular expressions in a pattern apply to
the entire line. Regular expressions may also occur in relational
expressions, using the operators ~ and !~. /re/ is a constant regular
expression; any string (constant or variable) may be used as a regular
expression, except in the position of an isolated regular expression in
a pattern.
A pattern may 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 through an occurrence of the second, inclusive.
A relational expression is one of the following:
expression matchop regular-expression
expression relop expression
expression in array-name
(expr, expr, ...) in array-name
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 these.
The special patterns BEGIN and END may be used to capture control before
the first input line is read and after the last. BEGIN and END do not
combine with other patterns. They may appear multiple times in a program
and execute in the order they are read by awk.
Variable names with special meanings:
ARGC
argument count, assignable.
ARGV
argument array, assignable; non-null members are taken as filenames.
CONVFMT
conversion format used when converting numbers (default %.6g).
ENVIRON
array of environment variables; subscripts are names.
FILENAME
the name of the current input file.
FNR
ordinal number of the current record in the current file.
FS
regular expression used to separate fields; also settable by option
-Ffs.
NF
number of fields in the current record.
NR
ordinal number of the current record.
OFMT
output format for numbers (default %.6g).
OFS
output field separator (default space).
ORS
output record separator (default newline).
RLENGTH
the length of a string matched by match.
RS
input record separator (default newline). If empty, blank lines
separate records. If more than one character long, RS is treated as
a regular expression, and records are separated by text matching the
expression.
RSTART
the start position of a string matched by match.
SUBSEP
separates multiple subscripts (default 034).
Functions may be defined (at the position of a pattern-action statement)
thus:
function foo(a, b, c) { ... }
Parameters are passed by value if scalar and by reference if array name;
functions may be called recursively. Parameters are local to the
function; all other variables are global. Thus local variables may be
created by providing excess parameters in the function definition.
ENVIRONMENT VARIABLES
If POSIXLY_CORRECT is set in the environment, then awk follows the POSIX
rules for sub and gsub with respect to consecutive backslashes and
ampersands.
EXAMPLES
length($0) > 72
Print lines longer than 72 characters.
{ print $2, $1 }
Print first two fields in opposite order.
BEGIN { FS = ",[ \t]*|[ \t]+" }
{ print $2, $1 }
Same, with input fields separated by comma and/or spaces and tabs.
{ s += $1 }
END { print "sum is", s, " average is", s/NR }
Add up first column, print sum and average.
/start/, /stop/
Print all lines between start/stop pairs.
BEGIN { # Simulate echo(1)
for (i = 1; i < ARGC; i++) printf "%s ", ARGV[i]
printf "\n"
exit }
SEE ALSO
grep(1), lex(1), sed(1)
A. V. Aho, B. W. Kernighan, P. J. Weinberger, The AWK Programming
Language, Second Edition, Addison-Wesley, 2024. ISBN 978-0-13-826972-2,
0-13-826972-6.
BUGS
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 it to be
treated as a string concatenate "" to it.
The scope rules for variables in functions are a botch; the syntax is
worse.
Input is expected to be UTF-8 encoded. Other multibyte character sets
are not handled. However, in eight-bit locales, awk treats each input
byte as a separate character.
UNUSUAL FLOATING-POINT VALUES
Awk was designed before IEEE 754 arithmetic defined Not-A-Number (NaN)
and Infinity values, which are supported by all modern floating-point
hardware.
Because awk uses strtod(3) and atof(3) to convert string values to
double-precision floating-point values, modern C libraries also convert
strings starting with inf and nan into infinity and NaN values
respectively. This led to strange results, with something like this:
echo nancy | awk '{ print $1 + 0 }'
printing nan instead of zero.
Awk now follows GNU AWK, and prefilters string values before attempting
to convert them to numbers, as follows:
Hexadecimal values
Hexadecimal values (allowed since C99) convert to zero, as they did
prior to C99.
NaN values
The two strings +nan and -nan (case independent) convert to NaN. No
others do. (NaNs can have signs.)
Infinity values
The two strings +inf and -inf (case independent) convert to positive
and negative infinity, respectively. No others do.