We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Could you explain some pieces of the example Cronjob given in the plugin?
10 3 * * * wget https://www.mysite.com/enupal-backup/schedule?key=12345 -O /dev/null
Specifically what does -O do and what is /dev/null for?
-O
/dev/null
The text was updated successfully, but these errors were encountered:
Hi @kgrote When using wget to call the webhook URL it creates temporary files, passing -O /dev/null avoid create these temporary files.
wget
-O /dev/null
Feel free to use curl instead, e.g
curl
10 3 * * * curl --request GET 'https://www.mysite.com/enupal-backup/schedule?key=12345'
Sorry, something went wrong.
andrelopez
No branches or pull requests
Could you explain some pieces of the example Cronjob given in the plugin?
10 3 * * * wget https://www.mysite.com/enupal-backup/schedule?key=12345 -O /dev/null
Specifically what does
-O
do and what is/dev/null
for?The text was updated successfully, but these errors were encountered: