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 | 9e197d1ef054cd389a3ed89cfe66f80ac1a979f2 (patch) | |
tree | cd849e3150676a26d10fb99b58105c4875333563 | |
parent | 15acd3a8b0b9a1a639c17f03832e94b4c12f60f1 (diff) | |
download | txr-9e197d1ef054cd389a3ed89cfe66f80ac1a979f2.tar.gz txr-9e197d1ef054cd389a3ed89cfe66f80ac1a979f2.tar.bz2 txr-9e197d1ef054cd389a3ed89cfe66f80ac1a979f2.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 |