09
Apr
2022

Shell Script to Create Cronjob

Here is a simple shell script to create cronjob, using the above code.


#!/bin/sh

sudo crontab -l > cron_bkp
sudo echo "0 10 * * * sudo /home/test.sh >/dev/null 2>&1" >> cron_bkp
sudo crontab cron_bkp
sudo rm cron_bkp


Please note, if you want to overwrite existing crontab with new one, just use > operator instead of >> above.

gefunden auf: https://fedingo.com/how-to-create-cron-job-using-shell-script/

Share

You may also like...

Schreibe einen Kommentar

Deine E-Mail-Adresse wird nicht veröffentlicht. Erforderliche Felder sind mit * markiert