#!/bin/csh -f # sloop # ------------------------------------------------------------------------------ # Shell script to loop, repeating the specified command one per second. # ------------------------------------------------------------------------- # Revision History: # $Log$ # ------------------------------------------------------------------------------ set quiet = if ("$1" == "-q") then shift set quiet = "-q" endif loop $quiet:q 1 $*:q exit $status