home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-387-Vol-3of3.iso / m / mawk11ax.zip / MAWK.DOC < prev    next >
Text File  |  1992-02-18  |  44KB  |  1,255 lines

  1.  
  2.  
  3.  
  4. MAWK(1)                   USER COMMANDS                   MAWK(1)
  5.  
  6.  
  7.  
  8. NAME
  9.      mawk - pattern scanning and text processing language
  10.  
  11.  
  12. SYNOPSIS
  13.      mawk [-W _o_p_t_i_o_n] [-F _v_a_l_u_e]  [-v  _v_a_r=_v_a_l_u_e]  [--]  'program
  14.      text' [file ...]
  15.      mawk [-W _o_p_t_i_o_n] [-F _v_a_l_u_e] [-v _v_a_r=_v_a_l_u_e] [-f _p_r_o_g_r_a_m-_f_i_l_e]
  16.      [--] [file ...]
  17.  
  18.  
  19. DESCRIPTION
  20.      mawk is an interpreter for  the  AWK  Programming  Language.
  21.      The  AWK  language is useful for manipulation of data files,
  22.      text retrieval  and  processing,  and  for  prototyping  and
  23.      experimenting with algorithms.  mawk is a _n_e_w _a_w_k meaning it
  24.      implements the AWK language as defined in Aho, Kernighan and
  25.      Weinberger,  _T_h_e  _A_W_K  _P_r_o_g_r_a_m_m_i_n_g  _L_a_n_g_u_a_g_e, Addison-Wesley
  26.      Publishing, 1988.  (Hereafter referred to as the AWK  book.)
  27.      mawk conforms to the Posix 1003.2 (draft 11.2) definition of
  28.      the AWK language which contains a few features not described
  29.      in the AWK book,  and mawk provides a small number of exten-
  30.      sions.
  31.  
  32.      An AWK program is a sequence of _p_a_t_t_e_r_n {_a_c_t_i_o_n}  pairs  and
  33.      function  definitions.   Short  programs  are entered on the
  34.      command  line  usually  enclosed  in  '  '  to  avoid  shell
  35.      interpretation.   Longer programs can be read in from a file
  36.      with the -f option.  Data  input is read from  the  list  of
  37.      files  on  the  command line or from standard input when the
  38.      list is empty.  The input is broken into records  as  deter-
  39.      mined by the record separator variable, RS.  Initially, RS =
  40.      "\n" and records are synonymous with lines.  Each record  is
  41.      compared against each _p_a_t_t_e_r_n and if it matches, the program
  42.      text for {_a_c_t_i_o_n} is executed.
  43.  
  44.  
  45. OPTIONS
  46.      -F _v_a_l_u_e     sets the field separator, FS, to _v_a_l_u_e.
  47.  
  48.  
  49.      -f _f_i_l_e      Program text is read from _f_i_l_e instead of  from
  50.                   the  command  line.   Multiple  -f  options are
  51.                   allowed.
  52.  
  53.  
  54.      -v _v_a_r=_v_a_l_u_e assigns _v_a_l_u_e to program variable _v_a_r.
  55.  
  56.  
  57.      --           indicates the unambiguous end of options.
  58.  
  59.  
  60.  
  61.  
  62.  
  63. Version 1.1         Last change: Jan 22 1992                    1
  64.  
  65.  
  66.  
  67.  
  68.  
  69.  
  70. MAWK(1)                   USER COMMANDS                   MAWK(1)
  71.  
  72.  
  73.  
  74.      The above options will be available with any Posix  compati-
  75.      ble  implementation  of  AWK,  and  implementation  specific
  76.      options are prefaced with -W. mawk provides three:
  77.  
  78.  
  79.      -W version   mawk writes its version and copyright to stdout
  80.                   and compiled limits to stderr and exits 0.
  81.  
  82.      -W dump      writes an assembler like listing of the  inter-
  83.                   nal representation of the program to stderr.
  84.  
  85.      -W sprintf=_n_u_m
  86.                   adjusts the size  of  mawk's  internal  sprintf
  87.                   buffer  to  _n_u_m  bytes.   More than rare use of
  88.                   this option indicates  mawk  should  be  recom-
  89.                   piled.
  90.  
  91.      -W posix_space
  92.                   forces mawk not to consider '\n' to be space.
  93.  
  94.  
  95. THE AWK LANGUAGE
  96.   1. Program structure
  97.      An AWK program is a sequence of _p_a_t_t_e_r_n {_a_c_t_i_o_n}  pairs  and
  98.      user function definitions.
  99.  
  100.      A pattern can be:
  101.           BEGIN
  102.           END
  103.           expression
  104.           expression , expression
  105.  
  106.      One, but not both, of _p_a_t_t_e_r_n {_a_c_t_i_o_n} can be omitted.    If
  107.      {_a_c_t_i_o_n}  is omitted it is implicitly { print }.  If _p_a_t_t_e_r_n
  108.      is omitted, then it is implicitly matched.   BEGIN  and  END
  109.      patterns require an action.
  110.  
  111.      Statements are terminated by newlines, semi-colons or  both.
  112.      Groups  of  statements  such  as  actions or loop bodies are
  113.      blocked via { ... } as in C.  The last statement in a  block
  114.      doesn't  need a terminator.  Blank lines have no meaning; an
  115.      empty statement is terminated with a semi-colon. Long state-
  116.      ments can be continued with a backslash, \.  A statement can
  117.      be broken without a backslash after a comma, left brace, &&,
  118.      ||,  do,  else, the right parenthesis of an if, while or for
  119.      statement, and the right parenthesis of a  function  defini-
  120.      tion.   A comment starts with # and extends to, but does not
  121.      include the end of line.
  122.  
  123.      The following statements control program flow inside blocks.
  124.  
  125.  
  126.  
  127.  
  128.  
  129. Version 1.1         Last change: Jan 22 1992                    2
  130.  
  131.  
  132.  
  133.  
  134.  
  135.  
  136. MAWK(1)                   USER COMMANDS                   MAWK(1)
  137.  
  138.  
  139.  
  140.           if ( _e_x_p_r ) _s_t_a_t_e_m_e_n_t
  141.  
  142.           if ( _e_x_p_r ) _s_t_a_t_e_m_e_n_t else _s_t_a_t_e_m_e_n_t
  143.  
  144.           while ( _e_x_p_r ) _s_t_a_t_e_m_e_n_t
  145.  
  146.           do _s_t_a_t_e_m_e_n_t while ( _e_x_p_r )
  147.  
  148.           for ( _o_p_t__e_x_p_r ; _o_p_t__e_x_p_r ; _o_p_t__e_x_p_r ) _s_t_a_t_e_m_e_n_t
  149.  
  150.           for ( _v_a_r in _a_r_r_a_y ) _s_t_a_t_e_m_e_n_t
  151.  
  152.           continue
  153.  
  154.           break
  155.  
  156.   2. Data types, conversion and comparison
  157.      There are two basic data types, numeric and string.  Numeric
  158.      constants  can  be integer like -2, decimal like 1.08, or in
  159.      scientific notation like -1.1e4 or .28E-3.  All numbers  are
  160.      represented  internally  and  all  computations  are done in
  161.      floating point arithmetic.  So for example,  the  expression
  162.      0.2e2 == 20 is true and true is represented as 1.0.
  163.  
  164.      String constants are enclosed in double quotes.
  165.  
  166.            "This is a string with a newline at the end.\n"
  167.  
  168.      Strings can be continued across a line by escaping  (\)  the
  169.      newline.  The following escape sequences are recognized.
  170.  
  171.           \\        \
  172.           \"        "
  173.           \a        alert, ascii 7
  174.           \b        backspace, ascii 8
  175.           \t        tab, ascii 9
  176.           \n        newline, ascii 10
  177.           \v        vertical tab, ascii 11
  178.           \f        formfeed, ascii 12
  179.           \r        carriage return, ascii 13
  180.           \ddd      1, 2 or 3 octal digits for ascii ddd
  181.           \xhh      1 or 2 hex digits for ascii  hh
  182.  
  183.      If you escape any other character \c, you get \c, i.e., mawk
  184.      ignores the escape.
  185.  
  186.      There are really three basic data types; the third is _n_u_m_b_e_r
  187.      _a_n_d _s_t_r_i_n_g which has both a numeric value and a string value
  188.      at  the  same  time.   User  defined  variables  come   into
  189.      existence when first referenced and are initialized to _n_u_l_l,
  190.      a number and string value which  has  numeric  value  0  and
  191.      string  value  "".  Non-trivial number and string typed data
  192.  
  193.  
  194.  
  195. Version 1.1         Last change: Jan 22 1992                    3
  196.  
  197.  
  198.  
  199.  
  200.  
  201.  
  202. MAWK(1)                   USER COMMANDS                   MAWK(1)
  203.  
  204.  
  205.  
  206.      come from input and are typically stored  in  fields.   (See
  207.      section 4).
  208.  
  209.      The type of an expression is determined by its  context  and
  210.      automatic type conversion occurs if needed.  For example, to
  211.      evaluate the statements
  212.  
  213.           y = x + 2  ;  z = x  "hello"
  214.  
  215.      The value stored in variable y will be typed numeric.  If  x
  216.      is  not  numeric,  the  value  taken  from x is converted to
  217.      numeric before it is added to 2 and stored in y.  The  value
  218.      stored  in variable z will be typed string, and the value of
  219.      x will be converted to string if necessary and  concatenated
  220.      with "hello".  (Of course, the value and type stored in x is
  221.      not changed by any conversions.) A string expression is con-
  222.      verted  to  numeric using its longest numeric prefix as with
  223.      _a_t_o_f(3).  A numeric expression is  converted  to  string  by
  224.      replacing  _e_x_p_r with sprintf(CONVFMT, _e_x_p_r), unless _e_x_p_r can
  225.      be represented on the host machine as an exact integer  then
  226.      it is converted to sprintf("%d", _e_x_p_r).  Sprintf() is an AWK
  227.      built-in that duplicates the  functionality  of  _s_p_r_i_n_t_f(3),
  228.      and CONVFMT is a built-in variable used for internal conver-
  229.      sion from  number  to  string  and  initialized  to  "%.6g".
  230.      Explicit  type  conversions can be forced, _e_x_p_r "" is string
  231.      and _e_x_p_r+0 is numeric.
  232.  
  233.      To evaluate,  _e_x_p_r1  rel-op  _e_x_p_r2,  if  both  operands  are
  234.      numeric or number and string then the comparison is numeric;
  235.      if both operands are string the comparison  is  string.   If
  236.      exactly  one operand is string and after trimming spaces and
  237.      tabs from  the  front  and  back  the  remaining  string  is
  238.      entirely  numeric  in  form, then the string is converted to
  239.      number and the comparison is numeric; otherwise, the numeric
  240.      operand is converted to string and the comparison is string.
  241.      The result of a comparison is numeric, 0 or 1.
  242.  
  243.      In boolean contexts such as, if ( _e_x_p_r ) _s_t_a_t_e_m_e_n_t, a string
  244.      expression evaluates true if and only if it is not the empty
  245.      string ""; numeric values if and  only  if  not  numerically
  246.      zero.
  247.  
  248.   3. Regular expressions
  249.      In the AWK language, records, fields and strings  are  often
  250.      tested  for  matching a _r_e_g_u_l_a_r _e_x_p_r_e_s_s_i_o_n.  Regular expres-
  251.      sions are enclosed in slashes, and
  252.  
  253.           _e_x_p_r ~ /_r/
  254.  
  255.      is an AWK expression that evaluates to 1 if  _e_x_p_r  "matches"
  256.      _r,  which means a substring of _e_x_p_r is in the set of strings
  257.      defined by _r.  With no match the expression evaluates to  0;
  258.  
  259.  
  260.  
  261. Version 1.1         Last change: Jan 22 1992                    4
  262.  
  263.  
  264.  
  265.  
  266.  
  267.  
  268. MAWK(1)                   USER COMMANDS                   MAWK(1)
  269.  
  270.  
  271.  
  272.      replacing ~ with the "not match" operator, !~ , reverses the
  273.      meaning.  As  pattern-action pairs,
  274.  
  275.           /_r/ { _a_c_t_i_o_n }   and   $0 ~ /_r/ { _a_c_t_i_o_n }
  276.  
  277.      are the same, and for each  input  record  that  matches  _r,
  278.      _a_c_t_i_o_n  is executed.  In fact, /_r/ is an AWK expression that
  279.      is equivalent to ($0 ~ /_r/)  anywhere  except  when  on  the
  280.      right side of a match operator or passed as an argument to a
  281.      built-in function that expects a  regular  expression  argu-
  282.      ment.
  283.  
  284.      AWK uses extended regular expressions as with _e_g_r_e_p(1).  The
  285.      regular  expression metacharacters, i.e., those with special
  286.      meaning in regular expressions are
  287.  
  288.            ^ $ . [ ] | ( ) * + ?
  289.  
  290.      Regular expressions are built up from characters as follows:
  291.  
  292.           _c            matches any non-metacharacter _c.
  293.  
  294.           \_c           matches a character defined  by  the  same
  295.                        escape  sequences used in string constants
  296.                        or the literal character _c if \_c is not an
  297.                        escape sequence.
  298.  
  299.           .            matches any character (including newline).
  300.  
  301.           ^            matches the front of a string.
  302.  
  303.           $            matches the back of a string.
  304.  
  305.           [c1c2c3...]  matches  any  character   in   the   class
  306.                        c1c2c3...  .  An interval of characters is
  307.                        denoted c1-c2 inside a class [...].
  308.  
  309.           [^c1c2c3...] matches any character  not  in  the  class
  310.                        c1c2c3...
  311.  
  312.      Regular expressions are built up from other regular  expres-
  313.      sions as follows:
  314.  
  315.           _r1_r2 matches _r1 followed immediately by _r2  (concatena-
  316.                tion).
  317.  
  318.           _r1 | _r2
  319.                matches _r1 or _r2 (alternation).
  320.  
  321.           _r*   matches _r repeated zero or more times.
  322.  
  323.           _r+   matches _r repeated one or more times.
  324.  
  325.  
  326.  
  327. Version 1.1         Last change: Jan 22 1992                    5
  328.  
  329.  
  330.  
  331.  
  332.  
  333.  
  334. MAWK(1)                   USER COMMANDS                   MAWK(1)
  335.  
  336.  
  337.  
  338.           _r?   matches _r zero or once.
  339.  
  340.           (_r)  matches _r, providing grouping.
  341.  
  342.      The increasing precedence of operators is alternation,  con-
  343.      catenation and unary (*, + or ?).
  344.  
  345.      For example,
  346.  
  347.           /^[_a-zA-Z][_a-zA-Z0-9]*$/  and
  348.           /^[-+]?([0-9]+\.?|\.[0-9])[0-9]*([eE][-+]?[0-9]+)?$/
  349.  
  350.      are matched by AWK identifiers  and  AWK  numeric  constants
  351.      respectively.   Note  that  . has to be escaped to be recog-
  352.      nized as a decimal point, and that  metacharacters  are  not
  353.      special inside character classes.
  354.  
  355.      Any expression can be used on the right hand side of  the  ~
  356.      or !~ operators or passed to a built-in that expects a regu-
  357.      lar expression.  If needed, it is converted to  string,  and
  358.      then interpreted as a regular expression.  For example,
  359.  
  360.           BEGIN { identifier = "[_a-zA-Z][_a-zA-Z0-9]*" }
  361.  
  362.           $0 ~ "^" identifier
  363.  
  364.      prints all lines that start with an AWK identifier.
  365.  
  366.      mawk recognizes the  empty  regular  expression,  //,  which
  367.      matches  the empty string and hence is matched by any string
  368.      at the front, back and between every character.   For  exam-
  369.      ple,
  370.  
  371.           echo  abc | mawk { gsub(//, "X") ; print }
  372.           XaXbXcX
  373.  
  374.  
  375.   4. Records and fields
  376.      Records are read in one at a time, and stored in  the  _f_i_e_l_d
  377.      variable  $0.   The  record  is  split into _f_i_e_l_d_s which are
  378.      stored in $1, $2, ..., $NF.  The built-in variable NF is set
  379.      to  the  number of fields, and NR and FNR are incremented by
  380.      1.  Fields above $NF are set to "".
  381.  
  382.      Assignment to $0 causes the fields and NF to be  recomputed.
  383.      Assignment to NF or to a field causes $0 to be reconstructed
  384.      by concatenating the $i's separated by OFS.  Assignment to a
  385.      field with index greater than NF, increases NF and causes $0
  386.      to be reconstructed.
  387.  
  388.      Data input stored in fields is  string,  unless  the  entire
  389.      field  has  numeric  form  and  then  the type is number and
  390.  
  391.  
  392.  
  393. Version 1.1         Last change: Jan 22 1992                    6
  394.  
  395.  
  396.  
  397.  
  398.  
  399.  
  400. MAWK(1)                   USER COMMANDS                   MAWK(1)
  401.  
  402.  
  403.  
  404.      string.  For example,
  405.  
  406.           echo 24 24E |
  407.           mawk '{ print($1>100, $1>"100", $2>100, $2>"100") }'
  408.           0 0 1 1
  409.  
  410.      $0 and $2 are string and $1 is number and string.  The first
  411.      and  second  comparisons  are  numeric  and the last two are
  412.      string.  In the second "100" is converted to 100, and in the
  413.      third 100 is converted to "100".
  414.  
  415.   5. Expressions and operators
  416.      The expression syntax is similar to C.  Primary  expressions
  417.      are  numeric constants, string constants, variables, fields,
  418.      arrays and functions. The identifier for a  variable,  array
  419.      or  function can be a sequence of letters, digits and under-
  420.      scores, that does not start with a digit.  Variables are not
  421.      declared;  they exist when first referenced and are initial-
  422.      ized to _n_u_l_l.
  423.  
  424.      New expressions are composed with the following operators in
  425.      order of increasing precedence.
  426.  
  427.           _a_s_s_i_g_n_m_e_n_t          =  +=  -=  *=  /=  %=  ^=
  428.           _c_o_n_d_i_t_i_o_n_a_l         ?  :
  429.           _l_o_g_i_c_a_l _o_r          ||
  430.           _l_o_g_i_c_a_l _a_n_d         &&
  431.           _a_r_r_a_y _m_e_m_b_e_r_s_h_i_p    in
  432.           _m_a_t_c_h_i_n_g       ~   !~
  433.           _r_e_l_a_t_i_o_n_a_l          <  >   <=  >=  ==  !=
  434.           _c_o_n_c_a_t_e_n_a_t_i_o_n       (no explicit operator)
  435.           _a_d_d _o_p_s             +  -
  436.           _m_u_l _o_p_s             *  /  %
  437.           _u_n_a_r_y               +  -
  438.           _l_o_g_i_c_a_l _n_o_t         !
  439.           _e_x_p_o_n_e_n_t_i_a_t_i_o_n      ^
  440.           _i_n_c _a_n_d _d_e_c         ++ -- (both post and pre)
  441.           _f_i_e_l_d               $
  442.  
  443.      Assignment, conditional and exponentiation  associate  right
  444.      to  left;  the other operators associate left to right.  Any
  445.      expression can be parenthesized.
  446.  
  447.   6. Arrays
  448.      Awk provides one-dimensional  arrays.   Array  elements  are
  449.      expressed  as  _a_r_r_a_y[_e_x_p_r].  _E_x_p_r is internally converted to
  450.      string type, so, for example, A[1] and A["1"] are  the  same
  451.      element  and  the  actual  index  is "1".  Arrays indexed by
  452.      strings are called associative arrays.  Initially  an  array
  453.      is  empty;  elements  exist when first accessed.  An expres-
  454.      sion, _e_x_p_r in _a_r_r_a_y evaluates to 1  if  _a_r_r_a_y[_e_x_p_r]  exists,
  455.      else to 0.
  456.  
  457.  
  458.  
  459. Version 1.1         Last change: Jan 22 1992                    7
  460.  
  461.  
  462.  
  463.  
  464.  
  465.  
  466. MAWK(1)                   USER COMMANDS                   MAWK(1)
  467.  
  468.  
  469.  
  470.      There is a form of the for statement that  loops  over  each
  471.      index of an array.
  472.  
  473.           for ( _v_a_r in _a_r_r_a_y ) _s_t_a_t_e_m_e_n_t
  474.  
  475.      sets _v_a_r to each index of _a_r_r_a_y and executes _s_t_a_t_e_m_e_n_t.  The
  476.      order  that  _v_a_r  transverses  the  indices  of _a_r_r_a_y is not
  477.      defined.
  478.  
  479.      The statement, delete _a_r_r_a_y[_e_x_p_r], causes _a_r_r_a_y[_e_x_p_r] not to
  480.      exist.
  481.  
  482.      Multidimensional arrays are synthesized  with  concatenation
  483.      using  the  built-in variable SUBSEP.  _a_r_r_a_y[_e_x_p_r1,_e_x_p_r2] is
  484.      equivalent to _a_r_r_a_y[_e_x_p_r1 SUBSEP _e_x_p_r2].  Testing for a mul-
  485.      tidimensional element uses a parenthesized index, such as
  486.  
  487.           if ( (i, j) in A )  print A[i, j]
  488.  
  489.  
  490.   7. Builtin-variables
  491.      The following variables are built-in and initialized  before
  492.      program execution.
  493.  
  494.           ARGC      number of command line arguments.
  495.  
  496.           ARGV      array of command line arguments, 0..ARGC-1.
  497.  
  498.           CONVFMT   format for internal conversion of numbers  to
  499.                     string, initially = "%.6g".
  500.  
  501.           ENVIRON   array indexed by environment  variables.   An
  502.                     environment  string,  _v_a_r=_v_a_l_u_e  is stored as
  503.                     ENVIRON[_v_a_r] = _v_a_l_u_e.
  504.  
  505.           FILENAME  name of the current input file.
  506.  
  507.           FNR       current record number in FILENAME.
  508.  
  509.           FS        splits  records  into  fields  as  a  regular
  510.                     expression.
  511.  
  512.           NF        number of fields in the current record.
  513.  
  514.           NR        current record  number  in  the  total  input
  515.                     stream.
  516.  
  517.           OFMT      format  for  printing  numbers;  initially  =
  518.                     "%.6g".
  519.  
  520.           OFS       inserted between fields on output,  initially
  521.                     = " ".
  522.  
  523.  
  524.  
  525. Version 1.1         Last change: Jan 22 1992                    8
  526.  
  527.  
  528.  
  529.  
  530.  
  531.  
  532. MAWK(1)                   USER COMMANDS                   MAWK(1)
  533.  
  534.  
  535.  
  536.           ORS       terminates each record on output, initially =
  537.                     "\n".
  538.  
  539.           RLENGTH   length set by the last call to  the  built-in
  540.                     function, match().
  541.  
  542.           RS        input record separator, initially = "\n".
  543.  
  544.           RSTART    index set by the last call to match().
  545.  
  546.           SUBSEP    used to build multiple array subscripts, ini-
  547.                     tially = "\034".
  548.  
  549.   8. Built-in functions
  550.      String functions
  551.  
  552.           gsub(_r,_s,_t)  gsub(_r,_s)
  553.                Global  substitution,  every  match   of   regular
  554.                expression  _r  in variable _t is replaced by string
  555.                _s.  The number of replacements is returned.  If  _t
  556.                is  omitted,  $0 is used.  An & in the replacement
  557.                string _s is replaced by the matched  substring  of
  558.                _t.  \& puts a literal & in the replacement string.
  559.  
  560.           index(_s,_t)
  561.                If _t is a substring of _s, then the position  where
  562.                _t  starts  is  returned,  else 0 is returned.  The
  563.                first character of _s is in position 1.
  564.  
  565.           length(_s)  length()
  566.                Returns the length of string _s; without  an  argu-
  567.                ment, returns the length of $0.
  568.  
  569.           match(_s,_r)
  570.                Returns the index of the first  longest  match  of
  571.                regular expression _r in string _s.  Returns 0 if no
  572.                match.  As a side effect, RSTART  is  set  to  the
  573.                return value.  RLENGTH is set to the length of the
  574.                match or -1 if no match.  If the empty  string  is
  575.                matched, RLENGTH is set to 0, and 1 is returned if
  576.                the match is at  the  front,  and  length(_s)+1  is
  577.                returned if the match is at the back.
  578.  
  579.           split(_s,_A,_r)  split(_s,_A)
  580.                String _s is split into fields by  regular  expres-
  581.                sion  _r  and  the  fields are loaded into array _A.
  582.                The number of fields is returned.  See section  11
  583.                below  for  more  detail.   If _r is omitted, FS is
  584.                used.
  585.  
  586.           sprintf(_f_o_r_m_a_t,_e_x_p_r-_l_i_s_t)
  587.                Returns  a  string  constructed   from   _e_x_p_r-_l_i_s_t
  588.  
  589.  
  590.  
  591. Version 1.1         Last change: Jan 22 1992                    9
  592.  
  593.  
  594.  
  595.  
  596.  
  597.  
  598. MAWK(1)                   USER COMMANDS                   MAWK(1)
  599.  
  600.  
  601.  
  602.                according  to  _f_o_r_m_a_t.   See  the  description  of
  603.                printf() below.
  604.  
  605.           sub(_r,_s,_t)  sub(_r,_s)
  606.                Single substitution, same as gsub() except at most
  607.                one substitution.
  608.  
  609.           substr(_s,_i,_n)  substr(_s,_i)
  610.                Returns the substring of  string  _s,  starting  at
  611.                index _i, of length _n.  If _n is omitted, the suffix
  612.                of _s, starting at _i is returned.
  613.  
  614.           tolower(_s)
  615.                Returns a copy of _s with all upper case characters
  616.                converted to lower case.
  617.  
  618.           toupper(_s)
  619.                Returns a copy of _s with all lower case characters
  620.                converted to upper case.
  621.  
  622.      Arithmetic functions
  623.  
  624.           atan2(_y,_x)     Arctan of _y/_x between -pi and pi.
  625.  
  626.           cos(_x)         Cosine function, _x in radians.
  627.  
  628.           exp(_x)         Exponential function.
  629.  
  630.           int(_x)         Returns _x truncated towards zero.
  631.  
  632.           log(_x)         Natural logarithm.
  633.  
  634.           rand()         Returns a random number between zero and one.
  635.  
  636.           sin(_x)         Sine function, _x in radians.
  637.  
  638.           sqrt(_x)        Returns square root of _x.
  639.  
  640.           srand(_e_x_p_r)  srand()
  641.                Seeds the random number generator, using the clock
  642.                if  _e_x_p_r  is omitted, and returns the value of the
  643.                previous seed.  mawk seeds the random number  gen-
  644.                erator  from  the  clock at startup so there is no
  645.                real need to call srand().  Srand(_e_x_p_r) is  useful
  646.                for repeating pseudo random sequences.
  647.  
  648.   9. Input and output
  649.      There are two output statements, print and printf.
  650.  
  651.           print
  652.                writes $0  ORS to standard output.
  653.  
  654.  
  655.  
  656.  
  657. Version 1.1         Last change: Jan 22 1992                   10
  658.  
  659.  
  660.  
  661.  
  662.  
  663.  
  664. MAWK(1)                   USER COMMANDS                   MAWK(1)
  665.  
  666.  
  667.  
  668.           print _e_x_p_r1, _e_x_p_r2, ..., _e_x_p_rn
  669.                writes _e_x_p_r1 OFS _e_x_p_r2 OFS ... _e_x_p_rn ORS to  stan-
  670.                dard output.  Numeric expressions are converted to
  671.                string with OFMT.
  672.  
  673.           printf _f_o_r_m_a_t, _e_x_p_r-_l_i_s_t
  674.                duplicates the printf C library  function  writing
  675.                to  standard  output.   The complete ANSI C format
  676.                specifications are recognized with conversions %c,
  677.                %d, %e, %E, %f, %g, %G, %i, %o, %s, %u, %x, %X and
  678.                %%, and conversion qualifiers h and l.
  679.  
  680.      The argument list to  print  or  printf  can  optionally  be
  681.      enclosed  in  parentheses.  Print formats numbers using OFMT
  682.      or "%d" for exact integers.  "%c" with  a  numeric  argument
  683.      prints  the  corresponding  8  bit  character, with a string
  684.      argument it prints the first character of the  string.   The
  685.      output  of  print  and printf can be redirected to a file or
  686.      command by appending > _f_i_l_e, >> _f_i_l_e or | _c_o_m_m_a_n_d to the end
  687.      of  the  print statement.  Redirection opens _f_i_l_e or _c_o_m_m_a_n_d
  688.      only once, subsequent redirections  append  to  the  already
  689.      open  stream.   By  convention, mawk associates the filename
  690.      "/dev/stderr" with stderr which allows print and  printf  to
  691.      be redirected to stderr.
  692.  
  693.      The input function getline has the following variations.
  694.  
  695.           getline
  696.                reads into $0, updates the fields, NF, NR and FNR.
  697.  
  698.           getline < _f_i_l_e
  699.                reads into $0 from _f_i_l_e, updates  the  fields  and
  700.                NF.
  701.  
  702.           getline _v_a_r
  703.                reads the next record into  _v_a_r,  updates  NR  and
  704.                FNR.
  705.  
  706.           getline _v_a_r < _f_i_l_e
  707.                reads the next record of _f_i_l_e into _v_a_r.
  708.  
  709.            _c_o_m_m_a_n_d | getline
  710.                pipes a record from _c_o_m_m_a_n_d into  $0  and  updates
  711.                the fields and NF.
  712.  
  713.            _c_o_m_m_a_n_d | getline _v_a_r
  714.                pipes a record from _c_o_m_m_a_n_d into _v_a_r.
  715.  
  716.      Getline returns 0 on end-of-file, -1 on error, otherwise 1.
  717.  
  718.      Commands on the end of pipes are executed by /bin/sh.
  719.  
  720.  
  721.  
  722.  
  723. Version 1.1         Last change: Jan 22 1992                   11
  724.  
  725.  
  726.  
  727.  
  728.  
  729.  
  730. MAWK(1)                   USER COMMANDS                   MAWK(1)
  731.  
  732.  
  733.  
  734.      The function close(_e_x_p_r) closes the file or pipe  associated
  735.      with  _e_x_p_r.   Close  returns  0 if _e_x_p_r is an open file, the
  736.      exit status if _e_x_p_r is a piped command,  and  -1  otherwise.
  737.      Close()  is  used to reread a file or command, make sure the
  738.      other end of an output pipe is  finished  or  conserve  file
  739.      resources.
  740.  
  741.      The function system(_e_x_p_r) uses /bin/sh to execute  _e_x_p_r  and
  742.      returns  the  exit status of the command _e_x_p_r.  Changes made
  743.      to the ENVIRON array are not  passed  to  commands  executed
  744.      with system or pipes.
  745.  
  746.   10. User defined functions
  747.      The syntax for a user defined function is
  748.  
  749.           function name( _a_r_g_s ) { _s_t_a_t_e_m_e_n_t_s }
  750.  
  751.      The function body can contain a return statement
  752.  
  753.           return _o_p_t__e_x_p_r
  754.  
  755.      A return statement is not required. Function  calls  may  be
  756.      nested  or  recursive.   Functions are passed expressions by
  757.      value and arrays by reference.   Extra  arguments  serve  as
  758.      local  variables  and are initialized to _n_u_l_l.  For example,
  759.      csplit(_s,_A) puts each  character  of  _s  into  array  _A  and
  760.      returns the length of _s.
  761.  
  762.           function csplit(s, A,    n, i)
  763.           {
  764.             n = length(s)
  765.             for( i = 1 ; i <= n ; i++ ) A[i] = substr(s, i, 1)
  766.             return n
  767.           }
  768.  
  769.      Putting extra space between passed arguments and local vari-
  770.      ables  is  conventional.  Functions can be referenced before
  771.      they are defined, but the function name and the '('  of  the
  772.      arguments must touch to avoid confusion with concatenation.
  773.  
  774.   11. Splitting strings, records and files
  775.      Awk programs use the same algorithm to  split  strings  into
  776.      arrays  with  split(),  and records into fields on FS.  mawk
  777.      uses essentially the same  algorithm  to  split  files  into
  778.      records on RS.
  779.  
  780.      Split(_e_x_p_r,_A,_s_e_p) works as follows:
  781.  
  782.           (1)  If _s_e_p is omitted, it is replaced by FS.  _S_e_p  can
  783.                be  an expression or regular expression.  If it is
  784.                an expression of non-string type, it is  converted
  785.                to string.
  786.  
  787.  
  788.  
  789. Version 1.1         Last change: Jan 22 1992                   12
  790.  
  791.  
  792.  
  793.  
  794.  
  795.  
  796. MAWK(1)                   USER COMMANDS                   MAWK(1)
  797.  
  798.  
  799.  
  800.           (2)  If _s_e_p = " " (a single  space),  then  <SPACE>  is
  801.                trimmed  from  the front and back of _e_x_p_r, and _s_e_p
  802.                becomes <SPACE>.  mawk defines <SPACE> as the reg-
  803.                ular   expression  /[ \t\n]+/.  Otherwise  _s_e_p  is
  804.                treated  as  a  regular  expression,  except  that
  805.                meta-characters are ignored for a string of length
  806.                1, e.g., split(x, A, "*") and  split(x,  A,  /\*/)
  807.                are the same.
  808.  
  809.           (3)  If _e_x_p_r is not string, it is converted to  string.
  810.                If  _e_x_p_r  is  then  the  empty  string "", split()
  811.                returns 0 and  _A  is  unchanged.   Otherwise,  all
  812.                non-overlapping,  non-null  and longest matches of
  813.                _s_e_p in _e_x_p_r, separate _e_x_p_r into fields  which  are
  814.                loaded  into  _A.   The  fields are placed in A[1],
  815.                A[2], ..., A[n] and split() returns n, the  number
  816.                of fields which is the number of matches plus one.
  817.                Data placed in  _A  that  looks  numeric  is  typed
  818.                number and string.
  819.  
  820.      Splitting records into fields  works  the  same  except  the
  821.      pieces  are loaded into $1, $2,..., $NF.  If $0 is empty, NF
  822.      is set to 0 and all $i to "".
  823.  
  824.      mawk splits files into records by the  same  algorithm,  but
  825.      with  the  slight  difference that RS is really a terminator
  826.      instead of a separator. (ORS is really a terminator too).
  827.  
  828.           E.g., if FS = ":+" and $0 = "a::b:" , then NF =  3  and
  829.           $1  =  "a", $2 = "b" and $3 = "", but if "a::b:" is the
  830.           contents of an input file and RS = ":+", then there are
  831.           two records "a" and "b".
  832.  
  833.      RS = " " is not special.
  834.  
  835.   12. Multi-line records
  836.      Since mawk interprets RS as a regular expression, multi-line
  837.      records  are  easy.  Setting RS = "\n\n+", makes one or more
  838.      blank lines separate records.  If FS = "  "  (the  default),
  839.      then single newlines, by the rules for <SPACE> above, become
  840.      space and single newlines are field separators.
  841.  
  842.           For example, if a file is "a b\nc\n\n",  RS  =  "\n\n+"
  843.           and  FS  =  " ", then there is one record "a b\nc" with
  844.           three fields "a", "b" and "c".   Changing  FS  =  "\n",
  845.           gives two fields "a b" and "c"; changing FS = "", gives
  846.           one field identical to the record.
  847.  
  848.      If you want lines with  spaces  or  tabs  to  be  considered
  849.      blank,  set  RS  =  "\n([ \t]*\n)+".  For compatibility with
  850.      other awks, setting RS = "" has the same effect as if  blank
  851.      lines are stripped from the front and back of files and then
  852.  
  853.  
  854.  
  855. Version 1.1         Last change: Jan 22 1992                   13
  856.  
  857.  
  858.  
  859.  
  860.  
  861.  
  862. MAWK(1)                   USER COMMANDS                   MAWK(1)
  863.  
  864.  
  865.  
  866.      records are determined as if RS = "\n\n+".   Posix  requires
  867.      that  "\n"  always separates records when RS = "" regardless
  868.      of the value of FS.  mawk does not support this  convention,
  869.      because defining "\n" as <SPACE> makes it unnecessary.
  870.  
  871.      Most of the time when you change RS for multi-line  records,
  872.      you  will  also  want  to change ORS to "\n\n" so the record
  873.      spacing is preserved on output.
  874.  
  875.   13. Program execution
  876.      This section  describes  the  order  of  program  execution.
  877.      First  ARGC is set to the total number of command line argu-
  878.      ments passed to the execution phase of the program.  ARGV[0]
  879.      is  set  the  name  of  the  AWK interpreter and ARGV[1] ...
  880.      ARGV[ARGC-1] holds  the  remaining  command  line  arguments
  881.      exclusive of options and program source.  For example with
  882.  
  883.           mawk  -f  prog  v=1  A  t=hello  B
  884.  
  885.      ARGC = 5 with ARGV[0] = "mawk", ARGV[1] = "v=1",  ARGV[2]  =
  886.      "A", ARGV[3] = "t=hello" and ARGV[4] = "B".
  887.  
  888.      Next, each BEGIN block is executed in order.  If the program
  889.      consists  entirely  of  BEGIN  blocks,  then  execution ter-
  890.      minates, else an input stream is opened and  execution  con-
  891.      tinues.  If ARGC equals 1, the input stream is set to stdin,
  892.      else  the command line arguments  ARGV[1]  ...  ARGV[ARGC-1]
  893.      are examined for a file argument.
  894.  
  895.      The command line arguments  divide  into  three  sets:  file
  896.      arguments,  assignment  arguments  and empty strings "".  An
  897.      assignment has the form  _v_a_r=_s_t_r_i_n_g.   When  an  ARGV[i]  is
  898.      examined  as  a possible file argument, if it is empty it is
  899.      skipped; if it is an assignment argument, the assignment  to
  900.      _v_a_r  takes  place  and  i  skips  to the next argument; else
  901.      ARGV[i] is opened for input.  If it fails to open, execution
  902.      terminates with exit code 1.  If no command line argument is
  903.      a file argument, then input comes from stdin.  Getline in  a
  904.      BEGIN  action  opens  input.  "-" as a file argument denotes
  905.      stdin.
  906.  
  907.      Once an input stream is open, each input  record  is  tested
  908.      against  each  _p_a_t_t_e_r_n,  and  if  it matches, the associated
  909.      _a_c_t_i_o_n is executed.  An expression pattern matches if it  is
  910.      boolean  true  (see  the end of section 2).  A BEGIN pattern
  911.      matches before any input has been read, and an  END  pattern
  912.      matches  after  all  input  has been read.  A range pattern,
  913.      _e_x_p_r1,_e_x_p_r2 , matches every  record  between  the  match  of
  914.      _e_x_p_r1 and the match _e_x_p_r2 inclusively.
  915.  
  916.      When end of file occurs on the input stream,  the  remaining
  917.      command line arguments are examined for a file argument, and
  918.  
  919.  
  920.  
  921. Version 1.1         Last change: Jan 22 1992                   14
  922.  
  923.  
  924.  
  925.  
  926.  
  927.  
  928. MAWK(1)                   USER COMMANDS                   MAWK(1)
  929.  
  930.  
  931.  
  932.      if there is one it is opened, else the END _p_a_t_t_e_r_n  is  con-
  933.      sidered matched and all END _a_c_t_i_o_n_s are executed.
  934.  
  935.      In the example, the assignment v=1  takes  place  after  the
  936.      BEGIN  _a_c_t_i_o_n_s  are  executed,  and  the data placed in v is
  937.      typed number and string.  Input is then read  from  file  A.
  938.      On  end  of file A, t is set to the string "hello", and B is
  939.      opened for input.  On end of file B,  the  END  _a_c_t_i_o_n_s  are
  940.      executed.
  941.  
  942.      Program flow at the _p_a_t_t_e_r_n {_a_c_t_i_o_n} level  can  be  changed
  943.      with the
  944.  
  945.           next   and
  946.           exit  _o_p_t__e_x_p_r
  947.  
  948.      statements.  A next statement causes the next  input  record
  949.      to  be  read  and  pattern testing to restart with the first
  950.      _p_a_t_t_e_r_n {_a_c_t_i_o_n} pair in the  program.   An  exit  statement
  951.      causes  immediate  execution  of  the END actions or program
  952.      termination if there are none or if the exit  occurs  in  an
  953.      END action.  The _o_p_t__e_x_p_r sets the exit value of the program
  954.      unless overridden by a later exit or subsequent error.
  955.  
  956.  
  957. EXAMPLES
  958.      1. emulate cat.
  959.  
  960.           { print }
  961.  
  962.      2. emulate wc.
  963.  
  964.           { chars += length($0) + 1  # add one for the \n
  965.             words += NF
  966.           }
  967.  
  968.           END{ print NR, words, chars }
  969.  
  970.      3. count the number of unique "real words".
  971.  
  972.           BEGIN { FS = "[^A-Za-z]+" }
  973.  
  974.           { for(i = 1 ; i <= NF ; i++)  word[$i] = "" }
  975.  
  976.           END { delete word[""]
  977.                 for ( i in word )  cnt++
  978.                 print cnt
  979.           }
  980.  
  981.      4. sum the second field of every record based on  the  first
  982.      field.
  983.  
  984.  
  985.  
  986.  
  987. Version 1.1         Last change: Jan 22 1992                   15
  988.  
  989.  
  990.  
  991.  
  992.  
  993.  
  994. MAWK(1)                   USER COMMANDS                   MAWK(1)
  995.  
  996.  
  997.  
  998.           $1 ~ /credit|gain/ { sum += $2 }
  999.           $1 ~ /debit|loss/  { sum -= $2 }
  1000.  
  1001.           END { print sum }
  1002.  
  1003.      5. sort a file, comparing as string
  1004.  
  1005.           { line[NR] = $0 "" }  # make sure of comparison type
  1006.                           # in case some lines look numeric
  1007.  
  1008.           END {  isort(line, NR)
  1009.             for(i = 1 ; i <= NR ; i++) print line[i]
  1010.           }
  1011.  
  1012.           #insertion sort of A[1..n]
  1013.           function isort( A, n,    i, j, hold)
  1014.           {
  1015.             for( i = 2 ; i <= n ; i++)
  1016.             {
  1017.               hold = A[j = i]
  1018.               while ( A[j-1] > hold )
  1019.               { j-- ; A[j+1] = A[j] }
  1020.               A[j] = hold
  1021.             }
  1022.             # sentinel A[0] = "" will be created if needed
  1023.           }
  1024.  
  1025.  
  1026.  
  1027. COMPATIBILITY ISSUES
  1028.      The Posix 1003.2(draft 11.2) definition of the AWK  language
  1029.      is  AWK  as  described in the AWK book with a few extensions
  1030.      that appeared in SystemVR4 nawk. The extensions are:
  1031.  
  1032.           New functions: toupper() and tolower().
  1033.  
  1034.           New variables: ENVIRON[] and CONVFMT.
  1035.  
  1036.           ANSI  C  conversion  specifications  for  printf()  and
  1037.           sprintf().
  1038.  
  1039.           New command options:  -v var=value, multiple -f options
  1040.           and implementation options as arguments to -W.
  1041.  
  1042.      Posix AWK is oriented to operate on files a line at a  time.
  1043.      RS can be changed from "\n" to another single character, but
  1044.      it is hard to find any use for this - there are no  examples
  1045.      in  the AWK book.  By convention, RS = "", makes one or more
  1046.      blank lines separate records, allowing  multi-line  records.
  1047.      When RS = "", "\n" is always a field separator regardless of
  1048.      the value in FS.
  1049.  
  1050.  
  1051.  
  1052.  
  1053. Version 1.1         Last change: Jan 22 1992                   16
  1054.  
  1055.  
  1056.  
  1057.  
  1058.  
  1059.  
  1060. MAWK(1)                   USER COMMANDS                   MAWK(1)
  1061.  
  1062.  
  1063.  
  1064.      mawk, on the other hand, allows RS to be a  regular  expres-
  1065.      sion.  When "\n" appears in records, it is treated as space,
  1066.      and FS always determines fields.
  1067.  
  1068.      Removing the line at a time paradigm can make some  programs
  1069.      simpler  and  can  often  improve performance.  For example,
  1070.      redoing example 3 from above,
  1071.  
  1072.           BEGIN { RS = "[^A-Za-z]+" }
  1073.  
  1074.           { word[ $0 ] = "" }
  1075.  
  1076.           END { delete  word[ "" ]
  1077.             for( i in word )  cnt++
  1078.             print cnt
  1079.           }
  1080.  
  1081.      counts the number of unique words  by  making  each  word  a
  1082.      record.   On  moderate  size  files,  mawk executes twice as
  1083.      fast, because of the simplified inner loop.
  1084.  
  1085.      The following program replaces  each  comment  by  a  single
  1086.      space in a C program file,
  1087.  
  1088.           BEGIN {
  1089.             RS = "/\*([^*]|\*+[^/*])*\*+/"
  1090.                # comment is record separator
  1091.             ORS = " "
  1092.             getline  hold
  1093.             }
  1094.  
  1095.             { print hold ; hold = $0 }
  1096.  
  1097.             END { printf "%s" , hold }
  1098.  
  1099.      Buffering one record is needed to avoid terminating the last
  1100.      record with a space.
  1101.  
  1102.      With mawk, the following are all equivalent,
  1103.  
  1104.           x ~ /a\+b/    x ~ "a\+b"     x ~ "a\\+b"
  1105.  
  1106.      The strings get scanned twice, once as string  and  once  as
  1107.      regular  expression.   On  the string scan, mawk ignores the
  1108.      escape on non-escape characters while the AWK book advocates
  1109.      _\_c be recognized as _c which necessitates the double escaping
  1110.      of meta-characters in strings. Posix explicitly declines  to
  1111.      define  the  behavior  which  passively forces programs that
  1112.      must run under a variety of awks to use  the  more  portable
  1113.      but less readable, double escape.
  1114.  
  1115.  
  1116.  
  1117.  
  1118.  
  1119. Version 1.1         Last change: Jan 22 1992                   17
  1120.  
  1121.  
  1122.  
  1123.  
  1124.  
  1125.  
  1126. MAWK(1)                   USER COMMANDS                   MAWK(1)
  1127.  
  1128.  
  1129.  
  1130.      Posix AWK does not recognize "/dev/stderr" or \x hex  escape
  1131.      sequences in strings.  Unlike ANSI C, mawk limits the number
  1132.      of digits that follows \x to two.
  1133.  
  1134.      Finally, here is how mawk handles exceptional cases not dis-
  1135.      cussed  in the AWK book or the Posix draft.  It is unsafe to
  1136.      assume consistency across awks and safe to skip to the  next
  1137.      section.
  1138.  
  1139.           substr(s, i, n) returns the  characters  of  s  in  the
  1140.           intersection  of the closed interval [1, length(s)] and
  1141.           the half-open interval [i, i+n).  When  this  intersec-
  1142.           tion  is  empty,  the  empty  string  is  returned;  so
  1143.           substr("ABC", 1, 0) = "" and  substr("ABC",  -4,  6)  =
  1144.           "A".
  1145.  
  1146.           Every string, including the empty string,  matches  the
  1147.           empty  string  at  the front so, s ~ // and s ~ "", are
  1148.           always 1 as is match(s, //) and match(s, "").  The last
  1149.           two set RLENGTH to 0.
  1150.  
  1151.           index(s, t) is always the same as match(s, t1) where t1
  1152.           is  the  same  as t with metacharacters escaped.  Hence
  1153.           consistency  with  match  requires  that  index(s,  "")
  1154.           always  returns 1.  Also the condition, index(s,t) != 0
  1155.           if  and  only  t  is  a  substring   of   s,   requires
  1156.           index("","") = 1.
  1157.  
  1158.           If getline encounters end of file, getline var,  leaves
  1159.           var unchanged.  Similarly, on entry to the END actions,
  1160.           $0, the fields and NF have their value  unaltered  from
  1161.           the last record.
  1162.  
  1163.  
  1164. SEE ALSO
  1165.      _e_g_r_e_p (1)
  1166.  
  1167.      Aho, Kernighan and Weinberger, _T_h_e _A_W_K _P_r_o_g_r_a_m_m_i_n_g _L_a_n_g_u_a_g_e,
  1168.      Addison-Wesley Publishing, 1988, (the AWK book), defines the
  1169.      language, opening with a  tutorial  and  advancing  to  many
  1170.      interesting  programs  that  delve  into  issues of software
  1171.      design and analysis relevant to programming in any language.
  1172.  
  1173.      _T_h_e _G_A_W_K _M_a_n_u_a_l, The Free Software Foundation,  1991,  is  a
  1174.      tutorial  and  language  reference that does not attempt the
  1175.      depth of the AWK book and assumes the reader may be a novice
  1176.      programmer. The section on AWK arrays is excellent.  It also
  1177.      discusses Posix requirements for AWK.
  1178.  
  1179.  
  1180.  
  1181.  
  1182.  
  1183.  
  1184.  
  1185. Version 1.1         Last change: Jan 22 1992                   18
  1186.  
  1187.  
  1188.  
  1189.  
  1190.  
  1191.  
  1192. MAWK(1)                   USER COMMANDS                   MAWK(1)
  1193.  
  1194.  
  1195.  
  1196. BUGS
  1197.      mawk cannot handle ascii NUL \0 in the source or data files.
  1198.      You can output NUL using printf with %c, and any other 8 bit
  1199.      character is acceptable input.
  1200.  
  1201.      mawk implements printf() and sprintf() using the  C  library
  1202.      functions,  printf  and  sprintf, so full ANSI compatibility
  1203.      requires an ANSI C library.  In practice this  means  the  h
  1204.      conversion qualifier may not be available.  Also mawk inher-
  1205.      its any bugs or limitations of the library functions.
  1206.  
  1207.      Implementors of the AWK language  have  shown  a  consistent
  1208.      lack of imagination when naming their programs.
  1209.  
  1210.  
  1211. AUTHOR
  1212.      Mike Brennan (brennan@boeing.com).
  1213.  
  1214.  
  1215.  
  1216.  
  1217.  
  1218.  
  1219.  
  1220.  
  1221.  
  1222.  
  1223.  
  1224.  
  1225.  
  1226.  
  1227.  
  1228.  
  1229.  
  1230.  
  1231.  
  1232.  
  1233.  
  1234.  
  1235.  
  1236.  
  1237.  
  1238.  
  1239.  
  1240.  
  1241.  
  1242.  
  1243.  
  1244.  
  1245.  
  1246.  
  1247.  
  1248.  
  1249.  
  1250.  
  1251. Version 1.1         Last change: Jan 22 1992                   19
  1252.  
  1253.  
  1254.  
  1255.