## The system's main boot script. ## ## Some functions used by the main script ## # launch [ [ ] ] launch() { toLaunch="$1" shift toWaitFor="$1" (( $# )) && shift if [ -f "/boot/$toLaunch" ] then "/boot/$toLaunch" $* & [ "$toWaitFor" != "" ] && waitfor "$toWaitFor" return 1 else echo There is no "$toLaunch" fi return 0 } # launchscript