About 216,000 results
Open links in new tab
  1. How can get a list of all scheduled cron jobs on my machine?

    Feb 7, 2011 · With most Crons (e.g. Vixie-Cron - Debian/Ubuntu default, Cronie - Fedora default, Solaris Cron ...) you get the list of scheduled cron jobs for the current user via: $ crontab -l or …

  2. How do I add an entry to my crontab? - Unix & Linux Stack …

    28 You can't use crontab like that. Use man crontab to read about the correct way of calling this utility. You'll want to use crontab -e to edit the current user's cron entries (you can …

  3. cron - How to comment all the crontab entries and then …

    Feb 6, 2020 · Export your current crontab into a file, delete the crontab, then use the previously created file. $ crontab -l > cron_content $ crontab -r $ <this is where you do your stuff> $ …

  4. Where are cron errors logged? - Unix & Linux Stack Exchange

    Aug 11, 2010 · I have a 2-command crontab entry that runs perfectly from that echoed command line, but the second command doesn't run when cron executes it (the first does). Debugging …

  5. Location of the crontab file - Unix & Linux Stack Exchange

    Apr 13, 2015 · heemayl is correct about the location of crontab files on Linux, but it might be different on other operating systems and "theoretically" is could also be in a different location …

  6. cron - As root, how can I list the crontabs for all users? - Unix ...

    Mar 13, 2014 · 105 I have a script being run automatically that I can't find in the crontab for the expected users, so I'd like to search all users' crontabs for it. Essentially I want to run a …

  7. linux - Recover cron jobs accidently removed with crontab -r

    I entered crontab -r instead of crontab -e and all my cron jobs have been removed. What is the best way (or is there one) to recover those jobs?

  8. Should I use 1,15 or */15 in crontab to run a command every 15 …

    Nov 20, 2020 · 12 As I know crontab has those fields, starting by left to right. 1 minutes 0-59 2 hours 0-23 3 days of month 0-31 4 month 1-12 5 day of the week 0-6 6 command I want to run …

  9. cron - how to temporarily disable a user's cronjobs? - Unix & Linux ...

    Mar 6, 2015 · However this only lasts until the user runs the crontab command. If you want a robust way, I don't think there's anything better than temporarily moving their crontab out of the …

  10. How can I make cron run a job right now (for testing/debugging ...

    I have a cron job that is scheduled to run every day. Other than changing the schedule, is there any other way to do a test run of the cron job right now to see if it works as intended? I know the