home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 January / usenetsourcesnewsgroupsinfomagicjanuary1994.iso / sources / misc / volume35 / zsh / part21 / NOTES
Text File  |  1993-02-20  |  507b  |  12 lines

  1. Important notes:
  2.  
  3. 1. Stuff like "ls *.sdofij 2>/dev/null" to suppress error messages
  4.    produced by the shell doesn't work anymore.  Filename generation is
  5.    done BEFORE redirection.  To avoid the error message, use the
  6.    nonomatch option, or do "( ls *.sdofij ) 2>/dev/null".
  7.  
  8. 2. History substitution is no longer done inside startup files.  If you
  9.    have sequences like \! or !" in your startup files, they will break.
  10.    (Especially !").  So check for those; remove the !", and change the
  11.    \! to !.
  12.