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

  1. NAME
  2.      cat - concatenate files and print on the standard output
  3.  
  4. SYNOPSIS
  5.      cat  [-benstuvAET]   [--number]   [--number-nonblank]   [--squeeze-blank]
  6.      [--show-nonprinting] [--show-ends] [--show-tabs] [--show-all] [file...]
  7.  
  8. DESCRIPTION
  9.      This manual page documents the  GNU  version  of  cat.   cat  writes  the
  10.      contents  of  each given file, or the standard input if none are given or
  11.      when a file named `-' is given, to the standard output.
  12.  
  13.      OPTIONS
  14.  
  15.      -b, --number-nonblank
  16.           Number all nonblank output lines, starting with 1.
  17.  
  18.      -e   Equivalent to -vE.
  19.  
  20.      -n, --number
  21.           Number all output lines, starting with 1.
  22.  
  23.      -s, --squeeze-blank
  24.           Replace multiple adjacent blank lines with a single blank line.
  25.  
  26.      -t   Equivalent to -vT.
  27.  
  28.      -u   Ignored; for Unix compatibility.
  29.  
  30.      -v, --show-nonprinting
  31.           Display control characters except for LFD and TAB using `^' notation
  32.           and precede characters that have the high bit set with `M-'.
  33.  
  34.      -A, --show-all
  35.           Equivalent to -vET.
  36.  
  37.      -E, --show-ends
  38.           Display a `$' after the end of each line.
  39.  
  40.      -T, --show-tabs
  41.           Display TAB characters as `^I'.
  42.  
  43.      The long-named options can be introduced with `+' as well  as  `--',  for
  44.      compatibility with previous releases.  Eventually support for `+' will be
  45.      removed, because it is incompatible with the POSIX.2 standard.
  46.