Top "Cron" questions

Cron is a time-based job scheduler running as a daemon process in Unix-like computer operating systems.

How to pass multiple parameters to cron job with curl?

I'm running two cron jobs: This one executes without a problem: curl -sS http://example.com/cronjob.php?days=1 But …

curl cron
What is the equivalent to cron jobs in ASP.NET?

In PHP we have cron jobs, where the hosting server automatically picks up and executes a task as per the …

c# asp.net c#-4.0 cron shared-hosting
cron job that will never execute

Is there any way to create a cron expression for not running the job at all. I though of using …

unix cron
Spring batch Cron expression: to run every 3 hours

I want my spring batch job to run every 3 hours I used expression * * */3 * * ? this starts the job at the hour …

spring cron spring-batch
How to run an X program from outside the X session (e.g. from the console or SSH)

Without being the person logged in at the console, how do I run an X application and have it display …

linux ssh cron x11
Export crontab to a file

How can I export the contents of the crontab to a file? I need it because I'm switching usernames and …

cron
Cron expression for every five minutes in the next n hours?

I know every five minutes is: 0 0/5 * * * * But how do I limit the number hours for this to happen? Example: Every …

cron quartz-scheduler
Remove log files using cron job

Hi. I want to remove all log files from the last 7 days from a folder, but leave all the other …

linux cron ubuntu-12.04
Run a Jenkins job every one minute using H/1 * * * *

How can I run a job created in Jenkins every one minute ? Am I missing anything? PS: I'm trying not …

jenkins build cron job-scheduling periodic-processing
Using @Scheduled and @EnableScheduling but gives NoSuchBeanDefinitionException

I have followed very simple examples online to set up a cron job in Spring yet I keep getting this …

java cron scheduled-tasks spring-4