92f2540792
&> is a bash shortcut to redirect both stdout and stderr it is more portable to use '>/dev/null 2>&1' to achieve this effect. Without this change the pi mailbox is filled with cron job output
7 lines
206 B
Plaintext
7 lines
206 B
Plaintext
#birdnet
|
|
*/5 * * * * $USER /usr/local/bin/disk_check.sh >/dev/null 2>&1
|
|
#birdnet
|
|
*/3 * * * * $USER /usr/local/bin/cleanup.sh >/dev/null 2>&1
|
|
#birdnet
|
|
@reboot $USER /usr/local/bin/cleanup.sh >/dev/null 2>&1
|