Cron Job curl with url

<p>Sometimes it is necessary to automate tasks with cron job in a project. In order to do that cpanel gives some default syntax. Along with that you need to curl the url to setup the cron job correctly.</p>
<p>Following is one example way of doing it.</p>
<p>curl --silent https://some-url.com &amp; &gt;/dev/null<br /><br />Above --silent is used to avoid emailing curl output to email which is kind of annoying. Moreover, the use --show-error option is also recommended along with --silient to email errors if it occurs.</p>