home *** CD-ROM | disk | FTP | other *** search
/ SGI Hot Mix 12 / Silicon_Graphics_Developer_Magic_Soft_Dev_812-8101-012.iso / .all / bin / wrongOS < prev    next >
Encoding:
Text File  |  1995-11-10  |  329 b   |  13 lines

  1. #!/bin/sh -f
  2.  
  3. case  `/usr/bin/X11/xconfirm -icon warning -t "The Developer Magic CD has only been tested, and is only supported on IRIX 5.3 and 6.1." \
  4. -t " "  \
  5. -t "     You may continue, with unpredictable results !" \
  6. -t " "  \
  7. -t "Run Developer Magic on this system ?" -b No -B Yes`
  8. in 
  9.     Yes) echo 1 ;;
  10.      No) echo 0 ;;
  11. esac
  12.  
  13.