home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 22 gnu / 22-gnu.zip / GNUTUE.ZIP / man / tac.man < prev    next >
Text File  |  1992-07-18  |  1KB  |  31 lines

  1. NAME
  2.      tac - concatenate and print files in reverse
  3.  
  4. SYNOPSIS
  5.      tac [-br] [-s  separator]  [--before]  [--regex]  [--separator=separator]
  6.      [file...]
  7.  
  8. DESCRIPTION
  9.      This manual page documents the GNU version of tac.  tac copies each given
  10.      file,  or the standard input if none are given or when a file name of `-'
  11.      is encountered, to the standard output with  the  order  of  the  records
  12.      reversed.   The  records  are  separated  by  instances of a string, or a
  13.      newline if none is given.  By default, the separator string  is  attached
  14.      to the end of the record that it follows in the file.
  15.  
  16.      OPTIONS
  17.  
  18.      -b, --before
  19.           The separator is attached to the beginning of  the  record  that  it
  20.           precedes in the file.
  21.  
  22.      -r, --regex
  23.           The separator is a regular expression.
  24.  
  25.      -s, --separator separator
  26.           Use separator as the record separator.
  27.  
  28.      The long-named options can be introduced with `+' as well  as  `--',  for
  29.      compatibility with previous releases.  Eventually support for `+' will be
  30.      removed, because it is incompatible with the POSIX.2 standard.
  31.