freebsd-dev/release/scripts/compat22-install.sh
David E. O'Brien b42cb34552 MFS.
1999-05-10 00:54:18 +00:00

9 lines
158 B
Bash
Executable File

#!/bin/sh
#
if [ "`id -u`" != "0" ]; then
echo "Sorry, this must be done as root."
exit 1
fi
cat compat22.?? | tar --unlink -xpzf - -C ${DESTDIR:-/}
exit 0