11 lines
126 B
Plaintext
11 lines
126 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
# lh_testroot.sh
|
||
|
|
||
|
# Checking user account
|
||
|
if [ "`id -u`" -ne "0" ]
|
||
|
then
|
||
|
echo "E: need root privileges"
|
||
|
exit 1
|
||
|
fi
|