#!/bin/sh if [ -z "$1" ]; then cat <<EOS usage: stop processes spawned by the command arg example: stop hourly #stops all hourly processes EOS exit 1 fi exec killall -gw "$1"