diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2023-09-22 14:43:26 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2023-09-22 14:43:26 -0700 |
commit | b546e82d8fde59c728894a25e96390a594796ecc (patch) | |
tree | cd849e3150676a26d10fb99b58105c4875333563 | |
parent | 5ef5719c77a02ceb4eb2f94f909ad522e3d74904 (diff) | |
download | txr-b546e82d8fde59c728894a25e96390a594796ecc.tar.gz txr-b546e82d8fde59c728894a25e96390a594796ecc.tar.bz2 txr-b546e82d8fde59c728894a25e96390a594796ecc.zip |
doc: awk: records and fields
* txr.1: the awk macro divides input into records
and fields, not records or fields.
-rw-r--r-- | txr.1 | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -69032,7 +69032,7 @@ The \*(TL library provides a macro called .code awk which is inspired by the Unix utility Awk. The macro implements a processing paradigm similar to that of the utility: it scans -one or more input streams, which are divided into records or fields, +one or more input streams, which are divided into records and fields, under the control of user-settable regular-expression-based delimiters. The records and fields are matched against a sequence of programmer-defined conditions (called "patterns" in the original Awk), which have associated |