Movatterモバイル変換


[0]ホーム

URL:


Jump to content
WikipediaThe Free Encyclopedia
Search

AWK

From Wikipedia, the free encyclopedia
(Redirected fromAwk)
Text processing programming language
This article is about the programming language. For other uses, seeAWK (disambiguation).
AWK
Usage of AWK in shell to check matching fields in two files
ParadigmScripting,procedural,data-driven[1]
Designed byAlfred Aho,Peter Weinberger, andBrian Kernighan
First appeared1977; 49 years ago (1977)
Stable release
IEEE Std 1003.1-2008 (POSIX) / 1985
Typing disciplinenone; can handle strings, integers and floating-point numbers; regular expressions
OSCross-platform
Majorimplementations
awk, GNU Awk, mawk, nawk, MKS AWK, Thompson AWK (compiler), Awka (compiler)
Dialects
old awk oawk 1977,new awk nawk 1985,GNU Awk gawk
Influenced by
C,sed,SNOBOL[2][3]
Influenced
Tcl,AMPL,Perl,Korn Shell (ksh93,dtksh,tksh),Lua

AWK (/ɔːk/[4]) is ascripting language designed for text processing and typically used as adata extraction and reporting tool. Likesed andgrep, it is afilter,[4] and it is a standard feature of mostUnix-like operating systems. Theshellcommand thatruns the AWK processor is namedawk.

The AWK language is adata-drivenscripting language consisting of a set of actions to be taken againststreams of textual data – either run directly on files or used as part of apipeline – for purposes of extracting or transforming text, such as producing formatted reports. The language extensively uses thestringdatatype,associative arrays (that is, arrays indexed by key strings), andregular expressions. While AWK has a limited intendedapplication domain and was especially designed to supportone-liner programs, the language isTuring-complete, and even the early Bell Labs users of AWK often wrote well-structured large AWK programs.[5]

AWK was created atBell Labs in the 1970s,[6] and its name is derived from the surnames of its authors:Alfred Aho (author ofegrep),Peter Weinberger (who worked on tiny relational databases), andBrian Kernighan. The acronym is pronounced the same as the name of the bird speciesauk, which is illustrated on the cover ofThe AWK Programming Language.[7]

History

[edit]

According to Brian Kernighan, one of the goals of AWK was to have a tool that would easily manipulate both numbers and strings. AWK was also inspired byMarc Rochkind's programming language that was used to search for patterns in input data, and was implemented usingyacc.[8]

As one of the early tools to appear inVersion 7 Unix, AWK added computational features to a Unixpipeline besides theBourne shell, the only scripting language available in a standard Unix environment. It is one of the mandatory utilities of theSingle UNIX Specification,[9] and is required by theLinux Standard Base specification.[10]

In 1983, AWK was one of several UNIX tools available for Charles River Data Systems'UNOS operating system underBell Laboratories license.[11]

AWK was significantly revised and expanded in 1985–88, resulting in theGNU AWK implementation written by Paul Rubin,Jay Fenlason, andRichard Stallman, released in 1988.[12] GNU AWK may be the most widely deployed version[13] because it is included with GNU-based Linux packages. GNU AWK has been maintained solely byArnold Robbins since 1994.[12]Brian Kernighan'snawk (New AWK) source was first released in 1993 unpublicized, and publicly since the late 1990s; many BSD systems use it to avoid the GPL license.[12]

AWK was preceded bysed (1974). Both were designed for text processing. They share the line-oriented, data-driven paradigm, and are particularly suited to writingone-liner programs, due to the implicitmain loop and current line variables. The power and terseness of early AWK programs – notably the powerful regular expression handling and conciseness due to implicit variables, which facilitate one-liners – together with the limitations of AWK at the time, were important inspirations for thePerl language (1987). In the 1990s, Perl became very popular, competing with AWK in the niche of Unix text-processing languages.

Structure of AWK programs

[edit]

AWK reads the input a line at a time. A line is scanned for each pattern in the program, and for each pattern that matches, the associated action is executed.

— Alfred V. Aho[14]

An AWK program is a series of pattern action pairs, written as:

condition{action}condition{action}...

wherecondition is typically an expression andaction is a series of commands. The input is split into records, where by default records are separated by newline characters so that the input is split into lines. The program tests each record against each of the conditions in turn, and executes theaction for each expression that is true. Either the condition or the action may be omitted. The condition defaults to matching every record. The default action is to print the record. This is the same pattern-action structure as sed.

In addition to a simple AWK expression, such asfoo == 1 or/^foo/, the condition can beBEGIN orEND causing the action to be executed before or after all records have been read, orpattern1, pattern2 which matches the range of records starting with a record that matchespattern1 up to and including the record that matchespattern2 before again trying to match againstpattern1 on subsequent lines.

In addition to normal arithmetic and logical operators, AWK expressions include the tilde operator,~, which matches aregular expression against a string. As handysyntactic sugar,/regexp/ without using the tilde operator matches against the current record; this syntax derives fromsed, which in turn inherited it from theed editor, where/ is used for searching. This syntax of using slashes asdelimiters for regular expressions was subsequently adopted byPerl andECMAScript, and is now common. The tilde operator was also adopted by Perl.

Commands

[edit]

AWK commands are the statements that are substituted foraction 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 ofdynamically linked libraries, which can also provide more functions.

Theprint command

[edit]

Theprint command is used to output text. The output text is always terminated with a predefined string called the output record separator (ORS) whose default value is a newline. The simplest form of this command is:

print
This displays the contents of the current record. In AWK, records are broken down intofields, and these can be displayed separately:
print $1
Displays the first field of the current record
print $1, $3
Displays the first and third fields of the current record, separated by a predefined string called the output field separator (OFS) whose default value is a single space character

Although these fields ($X) may bear resemblance to variables (the $ symbol indicates variables in the usual Unix shells and inPerl), they actually refer to the fields of the current record. A special case,$0, refers to the entire record. In fact, the commands "print" and "print $0" are identical in functionality.

Theprint command can also display the results of calculations and/or function calls:

/regex_pattern/{# Actions to perform in the event the record (line) matches the above regex_patternprint3+2printfoobar(3)printfoobar(variable)printsin(3-2)}

Output may be sent to a file:

/regex_pattern/{# Actions to perform in the event the record (line) matches the above regex_patternprint"expression">"file name"}

or through apipe:

/regex_pattern/{# Actions to perform in the event the record (line) matches the above regex_patternprint"expression"|"command"}

Built-in variables

[edit]

AWK's built-in variables include the field variables: $1, $2, $3, and so on ($0 represents the entire record). They hold the text or values in the individual text-fields in a record.

Other variables include:

  • NR: Number of Records. Keeps a current count of the number of input records read so far from all data files. It starts at zero, but is never automatically reset to zero.[15]
  • FNR: File Number of Records. Keeps a current count of the number of input records read so farin the current file. This variable is automatically reset to zero each time a new file is started.[15]
  • NF: Number of Fields. Contains the number of fields in the current input record. The last field in the input record can be designated by $NF, the 2nd-to-last field by $(NF-1), the 3rd-to-last field by $(NF-2), etc.
  • FILENAME: Contains the name of the current input-file.
  • FS: Field Separator. Contains the "field separator" used to divide fields in the input record. The default, "white space", allows any sequence of space and tab characters. FS can be reassigned with another character or character sequence to change the field separator.
  • RS: Record Separator. Stores the current "record separator" character. Since, by default, an input line is the input record, the default record separator character is a "newline".
  • OFS: Output Field Separator. Stores the "output field separator", which separates the fields when awk prints them. The default is a "space" character.
  • ORS: Output Record Separator. Stores the "output record separator", which separates the output records when awk prints them. The default is a "newline" character.
  • OFMT: Output Format. Stores the format for numeric output. The default format is "%.6g".

Variables and syntax

[edit]

Variable names can use any of the characters [A-Za-z0-9_], with the exception of language keywords, and cannot begin with a numeric digit. The operators+ - * / represent addition, subtraction, multiplication, and division, respectively. For stringconcatenation, simply place two variables (or string constants) next to each other. It is optional to use a space in between if string constants are involved, but two variable names placed adjacent to each other require a space in between. Double quotesdelimit string constants. Statements need not end with semicolons. Finally, comments can be added to programs by using# as the first character on a line, or behind a command or sequence of commands.

User-defined functions

[edit]

In a format similar toC, function definitions consist of the keywordfunction, the function name, argument names and the function body. Here is an example of a function.

functionadd_three(number){returnnumber+3}

This statement can be invoked as follows:

(pattern){printadd_three(36)# Outputs '''39'''}

Functions 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 somewhitespace in the argument list before the local variables, to indicate where the parameters end and the local variables begin.

Examples

[edit]

Hello, World!

[edit]

Here is the customary"Hello, World!" program written in AWK:

BEGIN{print"Hello, world!"exit}

Print lines longer than 80 characters

[edit]

Print all lines longer than 80 characters. The default action is to print the current line.

length($0)>80

Count words

[edit]

Count words in the input and print the number of lines, words, and characters (likewc):

{words+=NFchars+=length+1# add one to account for the newline character at the end of each record (line)}END{printNR,words,chars}

As there is no pattern for the first line of the program, every line of input matches by default, so the increment actions are executed for every line.words += NF is shorthand forwords = words + NF.

Sum last word

[edit]
{s+=$NF}END{prints+0}

s is incremented by the numeric value of$NF, which is the last word on the line as defined by AWK's field separator (by default, white-space).NF is the number of fields in the current line, e.g. 4. Since$4 is the value of the fourth field,$NF is the value of the last field in the line regardless of how many fields this line has, or whether it has more or fewer fields than surrounding lines.$ is actually a unary operator with the highestoperator precedence. (If the line has no fields, thenNF is 0,$0 is the whole line, which in this case is empty apart from possible white-space, and so has the numeric value 0.)

At the end of the input, theEND pattern matches, sos is printed. However, since there may have been no lines of input at all, in which case no value has ever been assigned tos,s will be an empty string by default. Adding zero to a variable is an AWK idiom for coercing it from a string to a numeric value. This results from AWK's arithmetic operators, like addition,implicitly casting their operands to numbers before computation as required. (Similarly, concatenating a variable with an empty string coerces from a number to a string, e.g.,s "". Note, there is no operator to concatenate strings, they are just placed adjacently.) On an empty input, the coercion in{ print s + 0 } causes the program to print0, whereas with just the action{ print s }, an empty line would be printed.

Match a range of input lines

[edit]
NR%4==1,NR%4==3{printf"%6d  %s\n",NR,$0}

The action statement prints each line numbered. The printf function emulates the standard Cprintf and works similarly to the print command described above. The pattern to match, however, works as follows:NR is the number of records, typically lines of input, AWK has so far read, i.e. the current line number, starting at 1 for the first line of input.% is themodulo operator.NR % 4 == 1 is true for the 1st, 5th, 9th, etc., lines of input. Likewise,NR % 4 == 3 is true for the 3rd, 7th, 11th, etc., lines of input. The range pattern is false until the first part matches, on line 1, and then remains true up to and including when the second part matches, on line 3. It then stays false until the first part matches again on line 5.

Thus, the program prints lines 1,2,3, skips line 4, and then 5,6,7, and so on. For each line, it prints the line number (on a 6 character-wide field) and then the line contents. For example, when executed on this input:

RomeFlorenceMilanNaplesTurinVenice

The previous program prints:

     1 Rome     2 Florence     3 Milan     5 Turin     6 Venice

Printing the initial or the final part of a file

[edit]

As a special case, when the first part of a range pattern is constantly true, e.g.1, the range will start at the beginning of the input. Similarly, if the second part is constantly false, e.g.0, the range will continue until the end of input. For example,

/^--cut here--$/,0

prints lines of input from the first line matching the regular expression^--cut here--$, that is, a line containing only the phrase "--cut here--", to the end.

Calculate word frequencies

[edit]

Word frequency usingassociative arrays:

BEGIN{FS="[^a-zA-Z]+"}{for(i=1;i<=NF;i++)words[tolower($i)]++}END{for(iinwords)printi,words[i]}

The BEGIN block sets the field separator to any sequence of non-alphabetic characters. Separators can be regular expressions. After that, we get to a bare action, which performs the action on every input line. In this case, for every field on the line, we add one to the number of times that word, first converted to lowercase, appears. Finally, in the END block, we print the words with their frequencies. The line

for (i in words)

creates a loop that goes through the arraywords, settingi to eachsubscript of the array. This is different from most languages, where such a loop goes through eachvalue in the array. The loop thus prints out each word followed by its frequency count.tolower was an addition to the One True awk (see below) made after the book was published.

Match pattern from command line

[edit]

This program can be represented in several ways. The first one uses theBourne shell to make a shell script that does everything. It is the shortest of these methods:

#!/bin/shpattern="$1"shiftawk'/'"$pattern"'/ { print FILENAME ":" $0 }'"$@"

The$pattern in the awk command is not protected by single quotes so that the shell does expand the variable but it needs to be put in double quotes to properly handle patterns containing spaces. A pattern by itself in the usual way checks to see if the whole line ($0) matches.FILENAME contains the current filename. awk has no explicit concatenation operator; two adjacent strings concatenate them.$0 expands to the original unchanged input line.

There are alternate ways of writing this. This shell script accesses the environment directly from within awk:

#!/bin/shexportpattern="$1"shiftawk'$0 ~ ENVIRON["pattern"] { print FILENAME ":" $0 }'"$@"

This is a shell script that usesENVIRON, an array introduced in a newer version of the One True awk after the book was published. The subscript ofENVIRON is the name of an environment variable; its result is the variable's value. This is like thegetenv function in various standard libraries andPOSIX. The shell script makes an environment variablepattern containing the first argument, then drops that argument and has awk look for the pattern in each file.

~ checks to see if its left operand matches its right operand;!~ is its inverse. A regular expression is just a string and can be stored in variables.

The next way uses command-line variable assignment, in which an argument to awk can be seen as an assignment to a variable:

#!/bin/shpattern="$1"shiftawk'$0 ~ pattern { print FILENAME ":" $0 }'pattern="$pattern""$@"

Or You can use the-v var=value command line option (e.g.awk -v pattern="$pattern" ...).

Finally, this is written in pure awk, without help from a shell or without the need to know too much about the implementation of the awk script (as the variable assignment on command line one does), but is a bit lengthy:

BEGIN{pattern=ARGV[1]for(i=1;i<ARGC;i++)# remove first argumentARGV[i]=ARGV[i+1]ARGC--if(ARGC==1){# the pattern was the only thing, so force read from standard input (used by book)ARGC=2ARGV[1]="-"}}$0~pattern{printFILENAME":"$0}

TheBEGIN is necessary not only to extract the first argument, but also to prevent it from being interpreted as a filename after theBEGIN block ends.ARGC, the number of arguments, is always guaranteed to be ≥1, asARGV[0] is the name of the command that executed the script, most often the string"awk".ARGV[ARGC] is the empty string,"".# initiates a comment that expands to the end of the line.

Note theif block. awk only checks to see if it should read from standard input before it runs the command. This means that

awk 'prog'

only works because the fact that there are no filenames is only checked beforeprog is run! If you explicitly setARGC to 1 so that there are no arguments, awk will simply quit because it feels there are no more input files. Therefore, you need to explicitly say to read from standard input with the special filename-.

Self-contained AWK scripts

[edit]

On Unix-like operating systems self-contained AWK scripts can be constructed using theshebang syntax.

For example, a script that sends the content of a given file to standard output may be built by creating a file namedprint.awk with the following content:

#!/usr/bin/awk -f{print$0}

It can be invoked with:./print.awk <filename>

The-f tells awk that the argument that follows is the file to read the AWK program from, which is the same flag that is used in sed. Since they are often used for one-liners, both these programs default to executing a program given as a command-line argument, rather than a separate file.

Versions and implementations

[edit]

AWK was originally written in 1977 and distributed withVersion 7 Unix.

In 1985 its authors started expanding the language, most significantly by adding user-defined functions. The language is described in the bookThe AWK Programming Language, published 1988, and its implementation was made available in releases ofUNIX System V. To avoid confusion with the incompatible older version, this version was sometimes called "new awk" ornawk. This implementation was released under afree software license in 1996 and is still maintained by Brian Kernighan (see external links below).[citation needed]

Old versions of Unix, such asUNIX/32V, includedawkcc, which converted AWK to C. Kernighan wrote a program to turn awk intoC++; its state is not known.[16]

  • BWK awk, also known asnawk, refers to the version byBrian Kernighan. It has been dubbed the "One True AWK" because of the use of the term in association with the book that originally described the language and the fact that Kernighan was one of the original authors of AWK.[7] FreeBSD refers to this version asone-true-awk.[17] This version also has features not in the book, such astolower andENVIRON that are explained above; see the FIXES file in the source archive for details. This version is used by, for example,Android,FreeBSD,NetBSD,OpenBSD,macOS, andillumos. Brian Kernighan and Arnold Robbins are the main contributors to a source repository fornawk:github.com/onetrueawk/awk.
  • gawk (GNU awk) is another free-software implementation and the only implementation that makes serious progress implementinginternationalization and localization and TCP/IP networking. It was written before the original implementation became freely available. It includes its own debugger, and itsprofiler enables the user to make measured performance enhancements to a script. It also enables the user to extend functionality with shared libraries. SomeLinux distributions includegawk as their default AWK implementation.[citation needed] As of version 5.2 (September 2022)gawk includes a persistent memory feature that can remember script-defined variables and functions from one invocation of a script to the next and pass data between unrelated scripts, as described in the Persistent-Memorygawk User Manual:www.gnu.org/software/gawk/manual/pm-gawk/.
    • gawk-csv. TheCSV extension ofgawk provides facilities for inputting and outputting CSV formatted data.[18]
  • mawk is a very fast AWK implementation by Mike Brennan based on abytecode interpreter.
  • libmawk is a fork of mawk, allowing applications to embed multiple parallel instances of awk interpreters.
  • awka (whose front end is written atop themawk program) is another translator of AWK scripts into C code. When compiled, statically including the author's libawka.a, the resulting executables are considerably sped up and, according to the author's tests, compare very well with other versions of AWK,Perl, orTcl. Small scripts will turn into programs of 160–170 kB.
  • tawk (Thompson AWK) is an AWKcompiler forSolaris,MS-DOS,OS/2, andWindows, sold by Thompson Automation Software (defunct).[19]
  • Jawk is a project to implement AWK inJava, hosted on SourceForge.[20] Extensions to the language are added to provide access to Java features within AWK scripts (i.e., Java threads, sockets, collections, etc.).
  • xgawk is a fork ofgawk[21] that extendsgawk with dynamically loadable libraries. The XMLgawk extension was integrated into the official GNU Awk release 4.1.0.
  • Hawk is an embeddable AWK interpreter written inC and hosted onGithub. It began asQSEAWK, an embedded AWK interpreter included in the QSE library.[22]
  • libfawk is a very small, function-only, reentrant, embeddable interpreter written in C
  • BusyBox includes an AWK implementation written by Dmitry Zakharov. This is a very small implementation suitable for embedded systems.
  • CLAWK by Michael Parker provides an AWK implementation inCommon Lisp, based upon the regular expression library of the same author.[23]
  • goawk is an AWK implementation in Go with a few convenience extensions by Ben Hoyt, hosted onGithub.

The gawk manual has a list of more AWK implementations.[24]

Books

[edit]

See also

[edit]

References

[edit]
  1. ^Stutz, Michael (September 19, 2006)."Get started with GAWK: AWK language fundamentals"(PDF).developerWorks.IBM.Archived(PDF) from the original on 2015-04-27. Retrieved2015-01-29.[AWK is] often called a data-driven language -- the program statements describe the input data to match and process rather than a sequence of program steps
  2. ^Andreas J. Pilavakis (1989).UNIX Workshop. Macmillan International Higher Education. p. 196.
  3. ^Arnold Robbins (2015).Effective Awk Programming: Universal Text Processing and Pattern Matching (4th ed.). O'Reilly Media. p. 560.
  4. ^abJames W. Livingston (May 2, 1988). "The Great awk Program is No Birdbrain".Digital Review. p. 91.
  5. ^Raymond, Eric S."Applying Minilanguages".The Art of Unix Programming. Case Study: awk. Archived fromthe original on July 30, 2008. RetrievedMay 11, 2010.The awk action language is Turing-complete, and can read and write files.
  6. ^Aho, Alfred V.;Kernighan, Brian W.;Weinberger, Peter J. (September 1, 1978).Awk — A Pattern Scanning and Processing Language (Second Edition) (Technical report). Unix Seventh Edition Manual, Volume 2. Bell Telephone Laboratories, Inc. RetrievedFebruary 1, 2020.
  7. ^abAho, Alfred V.; Kernighan, Brian W.; Weinberger, Peter J. (1988).The AWK Programming Language. Addison-Wesley Publishing Company.ISBN 9780201079814. Retrieved16 May 2015.
  8. ^"UNIX Special: Profs Kernighan & Brailsford".Computerphile. September 30, 2015.Archived from the original on 2021-11-22.
  9. ^"The Single UNIX Specification, Version 3, Utilities Interface Table". Archived fromthe original on 2018-01-05. Retrieved2005-12-18.
  10. ^"Chapter 15. Commands and Utilities".Linux Standard Base Core Specification 4.0 (Technical report). Linux Foundation. 2008.Archived from the original on 2019-10-16. Retrieved2020-02-01.
  11. ^The Insider's Guide To The Universe(PDF). Charles River Data Systems, Inc. 1983. p. 13.Archived(PDF) from the original on 2024-02-25. Retrieved2024-02-10.
  12. ^abcRobbins, Arnold (March 2014)."The GNU Project and Me: 27 Years with GNU AWK"(PDF).skeeve.com.Archived(PDF) from the original on October 6, 2014. RetrievedOctober 4, 2014.
  13. ^Dougherty, Dale; Robbins, Arnold (1997).sed & awk (2nd ed.). Sebastopol, CA: O'Reilly. p. 221.ISBN 1-565-92225-5.
  14. ^Hamilton, Naomi (May 30, 2008)."The A-Z of Programming Languages: AWK".Computerworld.Archived from the original on 2020-02-01. Retrieved2008-12-12.
  15. ^ab"Records".GAWK: Effective AWK Programming: A User's Guide for GNU Awk (5.3 ed.). September 2024.Archived from the original on 2009-04-12. Retrieved2025-01-24.
  16. ^Kernighan, Brian W. (April 24–25, 1991).An AWK to C++ Translator(PDF). Usenix C++ Conference. Washington, DC. pp. 217–228.Archived(PDF) from the original on 2020-06-22. Retrieved2020-02-01.
  17. ^"FreeBSD's work log for importing BWK awk into FreeBSD's core". May 16, 2005.Archived from the original on September 8, 2013. RetrievedSeptember 20, 2006.
  18. ^"CSV Processing With gawk (using the gawk-csv extension)".gawkextlib. 2018. Archived fromthe original on 2020-03-25.
  19. ^James K. Lawless (May 1, 1997)."Examining the TAWK Compiler".Dr. Dobb's Journal.Archived from the original on February 21, 2020. RetrievedFebruary 21, 2020.
  20. ^"Jawk at SourceForge".Archived from the original on 2007-05-27. Retrieved2006-08-23.
  21. ^"xgawk Home Page".Archived from the original on 2013-04-18. Retrieved2013-05-07.
  22. ^"QSEAWK at GitHub".GitHub.Archived from the original on 2018-06-11. Retrieved2017-09-06.
  23. ^"CLAWK at GitHub".GitHub.Archived from the original on 2021-08-25. Retrieved2021-06-01.
  24. ^"B.5 Other Freely Available awk Implementations".GAWK: Effective AWK Programming: A User's Guide for GNU Awk (5.3 ed.). September 2024.Archived from the original on 2025-02-12. Retrieved2025-01-24.

Further reading

[edit]

External links

[edit]
Wikibooks has a book on the topic of:An Awk Primer
File system
Processes
User environment
Text processing
Shell builtins
Searching
Documentation
Software development
Miscellaneous
File system
Processes
User environment
Text processing
Shell builtins
Networking
Searching
Software development
Miscellaneous
International
National
Other
Retrieved from "https://en.wikipedia.org/w/index.php?title=AWK&oldid=1338137279"
Categories:
Hidden categories:

[8]ページ先頭

©2009-2026 Movatter.jp