awk:introduction_to_awk
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
awk:introduction_to_awk [2020/05/06 19:56] – [AWK - Introduction to AWK] peter | awk:introduction_to_awk [2021/01/06 15:16] (current) – removed peter | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | ====== AWK - Introduction to AWK ====== | ||
- | |||
- | **AWK** is a programming-language tool used to manipulate text. | ||
- | |||
- | It allows you to create short programs that read input files, sort data, process it, perform arithmetic on the input, and generate reports, among myriad other functions. | ||
- | |||
- | The language of the AWK utility resembles the shell-programming language in many areas, although AWK’s syntax is very much its own. | ||
- | |||
- | When first created, AWK was designed to work in the text-processing arena, and the language is based on executing a series of instructions whenever a pattern is matched in the input data. | ||
- | |||
- | * The utility scans each line of a file, looking for patterns that match those given on the command line. | ||
- | * If a match is found, it takes the next programming step. If no match is found, it then proceeds to the next line. | ||
- | |||
- | The general syntax for the command is: | ||
- | |||
- | <code awk> | ||
- | awk ' | ||
- | </ | ||
- | |||
- | ...where pattern represents what AWK is looking for in the data, and action is a series of commands executed when a match is found. | ||
- | |||
- | |||
- | <WRAP info> | ||
- | **NOTE: | ||
- | </ | ||
- | |||
- | ---- | ||
- | |||
- | ===== AWK Workflow ===== | ||
- | |||
- | AWK follows a simple workflow − Read, Execute, and Repeat. | ||
- | |||
- | {{: | ||
- | |||
- | |||
- | * **Read** - AWK reads a line from the input stream (file, pipe, or stdin) and stores it in memory. | ||
- | * **Execute** - All AWK commands are applied sequentially on the input. By default AWK execute commands on every line. We can restrict this by providing patterns. | ||
- | * **Repeat** - This process repeats until the file reaches its end. | ||
awk/introduction_to_awk.1588794994.txt.gz · Last modified: 2020/07/15 09:30 (external edit)