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