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 / while < prev    next >
Text File  |  1993-10-09  |  267b  |  9 lines

  1.               while list
  2.               do list
  3.               done   Execute the do list as  long  as  the  while
  4.                      list returns a zero exit status.
  5.  
  6.               while ( list ) {
  7.               list
  8.               }      An alternate form of while.
  9.