> repeat 10 some_command

Found this on the web somewhere:

#!/bin/sh
i=0
num=$1
shift
while [ $(( i += 1 )) -le $num ]; do
  eval "$@"
done

Worked fine.  Thanks.
_______________________________________________
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos

Reply via email to