AWK: Difference between revisions

From Rosetta Code
Content added Content deleted
No edit summary
(Added a small summary of the language [citation from Wikipedia])
Line 1: Line 1:
'''AWK''' is a general purpose programming language that is designed for processing text-based data, either in files or data streams. 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. The power, terseness, and limitations of AWK programs and sed scripts inspired Larry Wall to write Perl. Because of their dense notation, all these languages are often used for writing one-liner programs.
{{stub}}

==Citations==
* [http://en.wikipedia.org/wiki/AWK_%28programming_language%29 Wikipedia:AWK]

{{Programming Language}}
{{Programming Language}}

Revision as of 12:53, 25 January 2007

AWK is a general purpose programming language that is designed for processing text-based data, either in files or data streams. 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. The power, terseness, and limitations of AWK programs and sed scripts inspired Larry Wall to write Perl. Because of their dense notation, all these languages are often used for writing one-liner programs.

Citations

Programming Language
This is a programming language. It may be used to instruct computers to accomplish a variety of tasks which may or may not be domain-specific.

Listed below are all of the tasks on Rosetta Code which have been solved using this programming language.