home *** CD-ROM | disk | FTP | other *** search
- #!/bin/sh
-
- TAR=/NextAdmin/Installer.app/installer_tar
-
- if [ $# != 1 ]; then
- echo "Usage: Install <NameOfADirectory>"
- exit
- fi
-
- if [ -f /tmp/i3d.1 -a -f /tmp/i3d.2 -a -f /tmp/i3d.3 ]; then
- cd $1
- /bin/cat /tmp/i3d.1 /tmp/i3d.2 /tmp/i3d.3 | /usr/ucb/uncompress -c | $TAR xvf -
- exit
- else
- echo "Please follow exactly the README file"
- fi
-
-
-
-