1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
#!/bin/sh PREFIX=/usr/local/ case "$1" in start) exec ${PREFIX}/bin/clockspeed & exit 0 ;; stop) ;; *) echo "Usage: `basename $0` {start|stop}" >&2 exit 64 ;; esac