home *** CD-ROM | disk | FTP | other *** search
/ Intuitiv 3D / Intuitiv3D_1.img / Install < prev    next >
Text File  |  1993-07-22  |  340b  |  20 lines

  1. #!/bin/sh
  2.  
  3. TAR=/NextAdmin/Installer.app/installer_tar
  4.  
  5. if [ $# != 1 ]; then
  6.     echo "Usage: Install <NameOfADirectory>"
  7.     exit
  8. fi
  9.  
  10. if [ -f /tmp/i3d.1 -a -f /tmp/i3d.2 -a -f /tmp/i3d.3 ]; then
  11.     cd $1
  12.     /bin/cat /tmp/i3d.1 /tmp/i3d.2 /tmp/i3d.3 | /usr/ucb/uncompress -c | $TAR xvf -
  13.     exit
  14. else
  15.     echo "Please follow exactly the README file"
  16. fi
  17.  
  18.  
  19.  
  20.