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