7 lines
70 B
Bash
7 lines
70 B
Bash
#! /bin/bash
|
|
|
|
if [ $UID -ne 0 ] ; then
|
|
echo "need root"
|
|
exit 1
|
|
fi
|