1994-06-15 22:15:12 +02:00
|
|
|
#!/bin/sh
|
|
|
|
#
|
|
|
|
# This file will extract all of the FreeBSD binaries into ${EXTRACT_TARGET}
|
|
|
|
# if it is set, or / otherwise.
|
|
|
|
#
|
|
|
|
# CAUTION DO NOT USE THIS TO INSTALL THE BINARIES ONTO A RUNNING
|
|
|
|
# SYSTEM, it will NOT WORK!!! You should use the extract command from /magic
|
|
|
|
# for installing the bindist onto your system.
|
|
|
|
SOURCEDIR=.
|
|
|
|
if [ X"${EXTRACT_TARGET}" = X"" ]; then
|
|
|
|
echo "YOU DO NOT WANT TO DO THAT!!!"
|
|
|
|
exit
|
|
|
|
EXTRACT_TARGET=/
|
|
|
|
fi
|
|
|
|
|
|
|
|
cd $SOURCEDIR
|
1994-06-28 09:28:28 +02:00
|
|
|
cat bin_tgz.* | gunzip | tar --unlink --directory ${EXTRACT_TARGET} -xpf -
|
1994-06-15 22:15:12 +02:00
|
|
|
#NO_EXPORT#cat des_tgz.* | gunzip | tar --directory ${EXTRACT_TARGET} -xpf -
|