#!/bin/sh case "${1}" in start) ntpd -q ;; *) echo "Usage: ${0} {start}" exit 1 ;; esac