#!/bin/sh # this is example.sh # to install the SHell Compiler do "apt-get install shc" # to compile me do: shc -rv -f example.sh # to run me do: ./example.sh.x if [ "$(/usr/bin/id -u)" != "0" ]; then echo "This program must be run with sudo (UID 0) privileges" exit 1 fi echo "I just ran all the way home" exit 0