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