home *** CD-ROM | disk | FTP | other *** search
/ The Fatted Calf / The Fatted Calf.iso / Unix / Shells / zsh / Source / help / unset < prev    next >
Encoding:
Text File  |  1993-10-08  |  1.0 KB  |  20 lines

  1.        set [ +-options ] [ +-o option name ] ... [ -A [name] ] [
  2.               arg  ] ...
  3.               Set the options for the shell and/or set the  posi-
  4.               tional  parameters,  or  declare an array.  For the
  5.               meaning of the flags, see OPTIONS above.  Flags may
  6.               be  specified  by name using the -o option.  If the
  7.               -A flag is specified, name is set to an array  con-
  8.               taining  the  given  args; if no name is specified,
  9.               all arrays are printed.  Otherwise  the  positional
  10.               parameters  are  set.   If  no arguments are given,
  11.               then the names and values  of  all  parameters  are
  12.               printed  on the standard output.  If the only argu-
  13.               ment is +, the names of all parameters are printed.
  14.  
  15.        unset [ -m ] name ...
  16.               Each named parameter is unset. If the  -m  flag  is
  17.               specified  the  arguments  are  taken  as  patterns
  18.               (should be quoted) and all parameters with matching
  19.               names are unset.
  20.