7 lines
79 B
Bash
Executable File
7 lines
79 B
Bash
Executable File
#!/bin/sh
|
|
|
|
if [ "$EUID" -ne 0 ]; then
|
|
echo -e "Please run as root"
|
|
exit
|
|
fi
|