Return to Snippet

Revision: 30339
at August 12, 2010 08:13 by wnasich


Updated Code
#! /bin/bash
for (( c=1; c<={number-of-times}; c++ ))
do
	process.sh
	sleep {seconds}s
done

Revision: 30338
at August 12, 2010 08:06 by wnasich


Initial Code
#! /bin/bash
for (( c=1; c<={number-of-times}; c++ ))
do
	php -f alertas.php
	sleep {seconds}s
done

Initial URL


Initial Description
Useful to use with crontab for allowing schedule a process below of the minute scope.

Initial Title
Execute process each interval of seconds

Initial Tags
linux

Initial Language
Bash