“Configurar trabajo cron” Código de respuesta

Cómo comenzar el trabajo cron

#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

Crear trabajo cron desde la línea de comandos

#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

Configurar trabajo 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

Respuestas similares a “Configurar trabajo cron”

Preguntas similares a “Configurar trabajo cron”

Más respuestas relacionadas con “Configurar trabajo cron” en Shell/Bash

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código