home *** CD-ROM | disk | FTP | other *** search
/ PC-Online 1996 May / PCOnline_05_1996.bin / linux / source / ap / zsh / zsh-2.4 / zsh-2 / zsh-2.4.306 / help / print < prev    next >
Text File  |  1993-10-09  |  2KB  |  41 lines

  1.        print [ -RnrslzpNDPoOic ] [ -un ] [ arg ... ]
  2.               With  no  flags  or  with flag -, the arguments are
  3.               printed on the  standard  output  as  described  by
  4.               echo,  with  the  following differences: the escape
  5.               sequence \M-x metafies the character  x  (sets  the
  6.               highest  bit),  \C-x  produces  a control character
  7.               (\C-@ and \C-? give the characters NULL and delete)
  8.               and  \E is a synonym for \e.  Finally, if not in an
  9.               escape sequence, \ escapes the following  character
  10.               and is not printed.
  11.               -R, -r ignore  the escape conventions of echo.  The
  12.                      -R option will print  all  subsequent  argu-
  13.                      ments and options.
  14.               -s     place   the  results  in  the  history  list
  15.                      instead of on the standard output.
  16.               -n     do not add a newline to the output.
  17.               -l     print the arguments  separated  by  newlines
  18.                      instead of spaces.
  19.               -N     print the arguments separated and terminated
  20.                      by nulls.
  21.               -o     print  the  arguments  sorted  in  ascending
  22.                      order.
  23.               -O     print  the  arguments  sorted  in descending
  24.                      order.
  25.               -i     if given together with -o or -O  makes  them
  26.                      work case independently
  27.               -c     print the arguments in columns
  28.               -un    print the arguments to file descriptor n.
  29.               -p     print  the  arguments  to  the  input of the
  30.                      coprocess.
  31.               -z     push the arguments onto the  editing  buffer
  32.                      stack,   separated   by  spaces;  no  escape
  33.                      sequences are recognized.
  34.               -D     treat  the  arguments  as  directory  names,
  35.                      replacing  prefixes  with  ~ expressions, as
  36.                      appropriate.
  37.               -P     recognize the same escape  sequences  as  in
  38.                      the PROMPT parameter.
  39.  
  40.        pwd    Equivalent to print -R $PWD.
  41.