mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-16 10:20:30 +00:00
9 lines
139 B
Bash
9 lines
139 B
Bash
|
#!/bin/sh
|
||
|
#
|
||
|
if [ "`id -u`" != "0" ]; then
|
||
|
echo "Sorry, this must be done as root."
|
||
|
exit 1
|
||
|
fi
|
||
|
tar --unlink -xpzf compat20.tgz -C /
|
||
|
exit 0
|