home *** CD-ROM | disk | FTP | other *** search
/ The-Coder - The Official Indigo Games / indigo_games.iso / asktoload next >
Encoding:
Text File  |  1993-03-10  |  237 b   |  14 lines

  1. #!/bin/sh
  2. # this script expects the name of the source directory
  3.  
  4. PATH=/bin:/usr/bin:/usr/sbin
  5.  
  6. ans=`/usr/sbin/confirm -b "No" -b "Yes" \
  7. -t "Do you really want to install $1 source?"`
  8.  
  9. case $ans
  10. in
  11. Yes) ./loadit $1 ;;
  12. *) exit 0 ;;
  13. esac
  14.