Skip to content

Instantly share code, notes, and snippets.

View Antvirf's full-sized avatar
🇫🇮
🇭🇰

Antti Antvirf

🇫🇮
🇭🇰
  • Synpulse8
  • Hong Kong / Finland
  • 18:34 (UTC +08:00)
View GitHub Profile
@Antvirf
Antvirf / ghetto_cron.sh
Last active December 19, 2023 05:31
ghettocron: periodic tasks in a container
ghettocron() {
sleep_duration=$1
echo "[ghettocron] task interval set to $sleep_duration"
while true; do
sleep $sleep_duration
echo "[ghettocron] running task at $(date)"
curl http://localhost:8000/do_thing/ > /dev/null
done
}