About 50 results
Open links in new tab
  1. linux - How can I view results of my cron jobs? - Super User

    Mar 21, 2010 · Most cron daemons on platforms I've worked with automatically email the stdout/stderr of user cron jobs to the user whose crontab the job came from. Then discard it. I forget what happens …

  2. linux - How to save Crontab edits? - Super User

    Nov 12, 2014 · I ran crontab -e and made some changes, now how do I save it?

  3. How to run a cron job as a specific user? - Super User

    The preferably solution I guess would be to just crontab -u <user> -e to keep everything in one place, which you can do as root. I like to group my cron jobs by function, though, instead of just by user, so …

  4. Can I specify a specific time with seconds with Linux crontab?

    May 4, 2023 · Can I specify a specific time with seconds with Linux crontab? Ask Question Asked 2 years, 9 months ago Modified 2 years, 9 months ago

  5. Run a cron job on the first Monday of every month? - Super User

    The crontab time and date fields specify only the time of day, and day of week. The shell test short-circuits if the weekday is not the first of the month, otherwise the real command is executed. The …

  6. Is it possible to use variables in crontab -e? - Super User

    This is stated in the documentation, which you can see by running man 5 crontab (Note that man crontab shows the documentation of the crontab command, in section 1 of the manual; you want the …

  7. Running program every 2 minutes with crontab - Super User

    Oct 30, 2011 · What does 2 * * * * means in crontab context? I want to run my program every 2 minutes; is that what 2 * * * * means?

  8. How to use @reboot for crontab with delay - Super User

    May 22, 2012 · In crontab, I can use @reboot to run a command after the system reboot. Is there a way to do this with an delay, i.e. run a command after 10 minutes of reboot?

  9. Change default text editor for crontab to vim - Super User

    15 From man crontab: The -e option is used to edit the current crontab using the editor specified by the VISUAL or EDITOR environment variables. After you exit from the editor, the modified crontab will be …

  10. crontab - Disable cron jobs for a specific user - Super User

    0 If you want to block the crontab job for a particular user make sure that your logged in with root user,root user only have access for crontab files. 1.Then go to the dir /etc/cron.d in this directory you …