/ Published in: Bash
Useful to use with crontab for allowing schedule a process below of the minute scope.
Expand |
Embed | Plain Text
#! /bin/bash for (( c=1; c<={number-of-times}; c++ )) do process.sh sleep {seconds}s done
You need to login to post a comment.
