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