Files
alpine-web-werver/bin/checkroot.sh
T
2019-04-15 19:36:15 +02:00

7 lines
79 B
Bash
Executable File

#!/bin/sh
if [ "$EUID" -ne 0 ]; then
echo -e "Please run as root"
exit
fi