home *** CD-ROM | disk | FTP | other *** search
/ Between Heaven & Hell 2 / BetweenHeavenHell.cdr / 500 / 471 / rccl186 < prev    next >
Text File  |  1987-03-02  |  614b  |  29 lines

  1.  
  2. #
  3. # Dir   : boot                  Author : Vincent Hayward
  4. # File  : dl                             School of Electrical Engineering
  5. # Remarks :                              Purdue University
  6. # Down Loading Procedure
  7. # search the directories in 'D' for the file to down load
  8. # if no argument is given, downloads @.out
  9.  
  10. D=". ~rccl/s"
  11.  
  12. case $# in
  13.     0) OUT=@.out ;;
  14.     1) OUT=$1 ;;
  15. esac
  16.  
  17. for C in $D
  18. do
  19.     if test -f $C/$OUT
  20.     then
  21.         echo downloading : $C/$OUT
  22.         echo flip switch to download
  23.         sleep 3
  24.         boot $C/$OUT
  25.            exit
  26.     fi
  27. done
  28. echo 'usage : dl [filename (if @.out does not exist)]'
  29.