home *** CD-ROM | disk | FTP | other *** search
/ rtsi.com / 2014.01.www.rtsi.com.tar / www.rtsi.com / OS9 / OSK / SHELLS / shell.lzh / SCRIPTS / contbreak < prev    next >
Text File  |  1994-09-03  |  324b  |  24 lines

  1. #
  2. echo Will display arg1 to arg4
  3. for i in arg1 arg2 noarg arg3 arg4
  4. do
  5.   if [ $i = noarg ]
  6.   then
  7.     continue
  8.   fi
  9.   echo Argument $i
  10. done
  11. echo
  12. #
  13. echo Will display arg1 and arg2 and finish after lastarg
  14. for i in arg1 arg2 lastarg arg3 arg4 arg5 arg6
  15. do
  16.   echo Argument $i
  17.   if [ $i = lastarg ]
  18.   then
  19.     break
  20.   fi
  21. done
  22.  
  23.  
  24.