“Configuration du travail cron” Réponses codées

Comment démarrer Cron Job

#Red Hat / CentOs:

service crond start

#or

/etc/init.d/crond start

#Ubuntu:

sudo service cron start

#or

sudo /etc/init.d/cron start
adens

Créer un travail cron à partir de la ligne de commande

#write out current crontab
crontab -l > mycron
#echo new cron into cron file
echo "00 09 * * 1-5 echo hello" >> mycron
#install new cron file
crontab mycron
rm mycron
Disgusted Deer

Configuration du travail cron

# to list all crontab content (including scheduled jobs)
crontab -l

# to edit crontab file
crontab -e

# once you have finished adding tasks, save the file and exit
# the cron daemon will read and execute the instructions provided
notorious

Réponses similaires à “Configuration du travail cron”

Questions similaires à “Configuration du travail cron”

Plus de réponses similaires à “Configuration du travail cron” dans Shell/Bash

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code