Als «crontab» getaggte Fragen

1
Crontab verwendet einen versteckten Cache?

Früher hatte ich eine Crontab, die so lief * * * * * /usr/bin/php /var/www/vhosts/default/htdocs/agent/time_keeper.php > /dev/null 2>&1 Es hat gut funktioniert. Jetzt habe ich das PHP-Skript in ein neues Verzeichnis verschoben und den Cron so laufen lassen * * * * * /usr/bin/php...

1
rsnapshot: Was ist los mit meiner Crontab?

Ich verwende Rsnapshot für Backups (Linux CentOS 6). Hier ist mein /etc/cron.d/rsnapshot: 30 11 * * * root /usr/bin/rsnapshot nowandthen > /backups/rsnapshot_cron.txt 2>&1 15 11 * * 4 root /usr/bin/rsnapshot weekly > /backups/rsnapshot_cron.txt 2>&1 00 11 24-31 * 4 root...

1
Verwendung von Brew in Crontab

Ich führe jeden Tag einen Alias ​​in meiner .zshrc-Datei aus. alias buou="brew update && brew outdated && brew upgrade" Ich möchte es mit crontab auf meinem MacOS 10.13.6 ausführen Ich habe eine Datei namens brewupdate.sh erstellt. #!/bin/bash brew update && brew outdated...