8 lines
121 B
Bash
Executable File
8 lines
121 B
Bash
Executable File
#!/bin/bash
|
|
if [ "$EUID" = 0 ]
|
|
then echo "Please don't run this as root"
|
|
exit
|
|
fi
|
|
|
|
gcc osLoader.c -static -O3 -o init
|