This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
if [[ $EUID -ne 0 ]]; then | |
echo "This script must be run using sudo or as the root user." | |
exit 1 | |
fi | |
echo "EAP Controller on Raspberry Pi" | |
echo "==============================" | |
echo "Author: Arthur Gay <[email protected]>" |