9 lines
148 B
Bash
9 lines
148 B
Bash
|
#!/bin/sh
|
||
|
#
|
||
|
if [ "`id -u`" != "0" ]; then
|
||
|
echo "Sorry, this must be done as root."
|
||
|
exit 1
|
||
|
fi
|
||
|
tar --unlink -xpzf xperimnt.tgz -C /usr/local
|
||
|
exit 0
|