Go to the first, previous, next, last section, table of contents.


Changing the Delimiter

You can redefine the delimiter used to separate fields in the input by using the DEFINE predefined macro and setting the environment variable DELIM, as in the example below.

%%DEFINE	DELIM	:

The above sets the delimiter to the colon character, equivalent to doing -F: with awk. You can give more than one character to DELIM in which case any of the given characters would count as a delimiter.


Go to the first, previous, next, last section, table of contents.