/ Published in: Bash
Useful to use with crontab for allowing schedule a process below of the minute scope.
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
#! /bin/bash for (( c=1; c<={number-of-times}; c++ )) do process.sh sleep {seconds}s done