mirror of
https://github.com/freebsd/freebsd-src
synced 2024-11-05 18:22:52 +00:00
b0d5cda0b1
these various collections to install someplace else.
8 lines
154 B
Bash
Executable file
8 lines
154 B
Bash
Executable file
#!/bin/sh
|
|
#
|
|
if [ "`id -u`" != "0" ]; then
|
|
echo "Sorry, this must be done as root."
|
|
exit 1
|
|
fi
|
|
cat dict.?? | tar --unlink -xpzf - -C ${DESTDIR:-/}
|
|
exit 0
|