Ich habe mal wieder eine kleine Frage
Dieses mal zur Synthax von cron. Ich habe folgendes Beispiel bekommen:
Code: Alles auswählen
25 6 * * * root test -x /usr/sbin/anacron || ( cd / && run-parts --report /etc/cron.daily )
Lieben Gruß und danke Leon
Code: Alles auswählen
25 6 * * * root test -x /usr/sbin/anacron || ( cd / && run-parts --report /etc/cron.daily )
Code: Alles auswählen
$ true || echo "foo" && echo "bar"
bar
$ true || (echo "foo" && echo "bar")
$ false || (echo "foo" && echo "bar")
foo
bar
Code: Alles auswählen
man bash