icon Top 9 categories map      RocketAware >

m4(1)

Tips: Browse or Search all pages for efficient awareness of more than 6000 of the most popular reusable and open source applications, functions, libraries, and FAQs.


The "RKT couplings" below include links to source code, updates, additional information, advice, FAQs, and overviews.


Home

Search all pages


Subjects

By activity
Professions, Sciences, Humanities, Business, ...

User Interface
Text-based, GUI, Audio, Video, Keyboards, Mouse, Images,...

Text Strings
Conversions, tests, processing, manipulation,...

Math
Integer, Floating point, Matrix, Statistics, Boolean, ...

Processing
Algorithms, Memory, Process control, Debugging, ...

Stored Data
Data storage, Integrity, Encryption, Compression, ...

Communications
Networks, protocols, Interprocess, Remote, Client Server, ...

Hard World
Timing, Calendar and Clock, Audio, Video, Printer, Controls...

File System
Management, Filtering, File & Directory access, Viewers, ...

    

RocketLink!--> Man page versions: OpenBSD FreeBSD NetBSD Solaris Others



M4(1)                      OpenBSD Reference Manual                      M4(1)

NAME
     m4 - macro language processor



SYNOPSIS
     m4 [-Dname[=value]] [-Uname] [-I dirname]

DESCRIPTION
     The m4 utility is a macro processor that can be used as a front end to
     any language (e.g., C, ratfor, fortran, lex, and yacc).  m4 reads from
     the standard input and writes the processed text to the standard output.

     Macro calls have the form name(argument1[, argument2, ...,] argumentN).

     There cannot be any space following the macro name and the open parenthe-
     sis '('.  If the macro name is not followed by an open parenthesis it is
     processed with no arguments.

     Macro names consist of a leading alphabetic or underscore possibly fol-
     lowed by alphanumeric or underscore characters, therefore valid macro
     names match this pattern [a-zA-Z_][a-zA-Z0-9_]*.

     In arguments to macros, leading unquoted space, tab and newline charac-
     ters are ignored.  To quote strings use left and right single quotes
     (e.g., ` this is a string with a leading space').  You can change the
     quote characters with the changequote built-in macro.

     The options are as follows:

     -Dname[=value]     Define the symbol name to have some value (or NULL).

     -Uname             Undefine the symbol name.

     -I dirname         Add directory dirname to the include path.

SYNTAX
     m4 provides the following built-in macros.  They may be redefined, losing
     their original meaning.  Return values are NULL unless otherwise stated.

     changecom       Change the start and end comment sequences.  The default
                     is the pound sign `#' and the newline character.  With no
                     arguments comments are turned off.  The maximum length
                     for a comment marker is five characters.

     changequote     Defines the quote symbols to be the first and second ar-
                     guments.  The symbols may be up to five characters long.
                     If no arguments are given it restores the default open
                     and close single quotes.

     decr            Decrements the argument by 1.  The argument must be a
                     valid numeric string.

     define          Define a new macro named by the first argument to have
                     the value of the second argument.  Each occurrence of $n
                     (where n is 0 through 9) is replaced by the n'th argu-
                     ment.  $0 is the name of the calling macro.  Undefined
                     arguments are replaced by a NULL string.  $# is replaced
                     by the number of arguments; $* is replaced by all argu-
                     ments comma separated; $@ is the same as $* but all argu-
                     ments are quoted against further expansion.

     defn            Returns the quoted definition for each argument.  This
                     can be used to rename macro definitions (even for built-

                     in macros).

     divert          There are 10 output queues (numbered 0-9).  At the end of
                     processing m4 concatenates all the queues in numerical
                     order to produce the final output.  Initially the output
                     queue is 0.  The divert macro allows you to select a new
                     output queue (an invalid argument passed to divert causes
                     output to be discarded).

     divnum          Returns the current output queue number.

     dnl             Discard input characters up to and including the next
                     newline.

     dumpdef         Prints the names and definitions for the named items, or
                     for everything if no arguments are passed.

     errprint        Prints the first argument on the standard error output
                     stream.

     eval            Computes the first argument as an arithmetic expression
                     using 32-bit arithmetic.  Operators are the standard C
                     ternary, arithmetic, logical, shift, relational, bitwise,
                     and parentheses operators.  You can specify octal, deci-
                     mal, and hexadecimal numbers as in C.  The second argu-
                     ment (if any) specifies the radix for the result and the
                     third argument (if any) specifies the minimum number of
                     digits in the result.

     expr            This is an alias for eval.

     ifdef           If the macro named by the first argument is defined then
                     return the second argument, otherwise the third.  If
                     there is no third argument, the value is NULL.  The word
                     `unix' is predefined.

     ifelse          If the first argument matches the second argument then
                     ifelse returns the third argument.  If the match fails
                     the three arguments are discarded and the next three ar-
                     guments are used until there is zero or one arguments
                     left, either this last argument or NULL is returned if no
                     other matches were found.

     include         Returns the contents of the file specified in the first
                     argument.  If the file is not found as is, look through
                     the include path: first the directories specified with -I
                     on the command line, then the environment variable
                     M4PATH, as a colon-separated list of directories.  In-
                     clude aborts with an error message if the file cannot be
                     included.

     incr            Increments the argument by 1.  The argument must be a
                     valid numeric string.

     index           Returns the index of the second argument in the first ar-
                     gument (e.g., index(the quick brown fox jumped, fox) re-
                     turns 16).  If the second argument is not found index re-
                     turns -1.

     len             Returns the number of characters in the first argument.
                     Extra arguments are ignored.

     m4exit          Immediately exits with the return value specified by the
                     first argument, 0 if none.

     m4wrap          Allows you to define what happens at the final EOF, usu-
                     ally for cleanup purposes (e.g., m4wrap("cleanup(temp-
                     file)") causes the macro cleanup to be invoked after all
                     other processing is done.)

     maketemp        Translates the string XXXXX in the first argument with
                     the current process ID leaving other characters alone.
                     This can be used to create unique temporary file names.

     paste           Includes the contents of the file specified by the first
                     argument without any macro processing.  Aborts with an
                     error message if the file cannot be included.

     popdef          Restores the pushdefed definition for each argument.

     pushdef         Takes the same arguments as define, but it saves the def-
                     inition on a stack for later retrieval by popdef.

     shift           Returns all but the first argument, the remaining argu-
                     ments are quoted and pushed back with commas in between.
                     The quoting nullifies the effect of the extra scan that
                     will subsequently be performed.

     sinclude        Similar to include, except it ignores any errors.

     spaste          Similar to paste, except it ignores any errors.

     substr          Returns a substring of the first argument starting at the
                     offset specified by the second argument and the length
                     specified by the third argument.  If no third argument is
                     present it returns the rest of the string.

     syscmd          Passes the first argument to the shell.  Nothing is re-
                     turned.

     sysval          Returns the return value from the last syscmd.

     translit        Transliterate the characters in the first argument from
                     the set given by the second argument to the set given by
                     the third.  You cannot use tr(1) style abbreviations.

     undefine        Removes the definition for the macro specified by the
                     first argument.

     undivert        Flushes the named output queues (or all queues if no ar-
                     guments).

     unix            A pre-defined macro for testing the OS platform.

AUTHOR
     Ozan Yigit <oz@sis.yorku.ca> and Richard A. O'Keefe (ok@goan-
     na.cs.rmit.OZ.AU)

OpenBSD 2.6                    January 26, 1993                              3

Source: OpenBSD 2.6 man pages. Copyright: Portions are copyrighted by BERKELEY
SOFTWARE DESIGN, INC., The Regents of the University of California, Massachusetts
Institute of Technology, Free Software Foundation, FreeBSD Inc., and others.



(Corrections, notes, and links courtesy of RocketAware.com)


[Detailed Topics]
FreeBSD Sources for m4(1)
OpenBSD sources for m4(1)


[Overview Topics]

Up to: Specific Programming Languages
Up to: Command Shells and Scripting Languages
Up to: Software Development - Tools and utilities for software development


RocketLink!--> Man page versions: OpenBSD FreeBSD NetBSD Solaris Others






Rapid-Links: Search | About | Comments | Submit Path: RocketAware > m4.1/
RocketAware.com is a service of Mib Software
Copyright 1999, Forrest J. Cavalier III. All Rights Reserved.
We welcome submissions and comments