About 2,480,000 results
Open links in new tab
  1. cron - How to activate this crontab? - Ask Ubuntu

    5 Actually, the best way to use crontab is by using crontab itself: crontab -l # list current crontab entries crontab -e # edit the cron table As soon as you finish editing the crontab (via 'crontab …

  2. cron - Where is the user crontab stored? - Ask Ubuntu

    If so, you can get a "copy" of your crontab file by doing crontab -l. Pipe that to a file to get a "backup": crontab -l > my-crontab Then you can edit that my-crontab file to add or modify …

  3. cron - Verify if crontab works - Ask Ubuntu

    Dec 6, 2011 · crontab -e and add this line to crontab: * * * * * /bin/bash -l -c 'date >> /tmp/cron-test.txt' this command writes the current date every minute in the cron-test file, you can watch …

  4. cron - Running two commands in crontab - Ask Ubuntu

    10 I have this line in my crontab file */1 * * * * espeak 'foo' && espeak 'bar' But only half of it, first command gets executed every minute. While when I write this in the terminal it works like a …

  5. crontab - How to run cron job when network is up? - Ask Ubuntu

    I have some anacron jobs which run daily. The scripts update local bzr and git repositories. Naturally these scripts need working network connections. I'm on a laptop and often wired and …

  6. What is the correct way to edit a crontab file? - Ask Ubuntu

    Apr 16, 2015 · crontab -e lets you edit your user crontab without sudo. The user crontabs are in /var/spool/cron/crontabs which is a directory that cannot be accessed without superuser …

  7. Where is the cron / crontab log? - Ask Ubuntu

    I want to verify that my cron job is executing and at what time. I believe there is a log for my sudo crontab -e jobs, but where? I searched google and found recommendations to look in /var/l...

  8. How do I set up a Cron job? - Ask Ubuntu

    Aug 16, 2010 · I want to schedule a task to run on a regular basis and have heard that Cron is the way to do this. How do I add Cron jobs in Ubuntu?

  9. crontab -e does not open the crontab for this user - Ask Ubuntu

    Apr 1, 2018 · Using crontab -e was the start of the problem - it didn't do anything. It turns out the Emacs setup was the cause (but I assume any other editor could somehow cause this …

  10. cron - Why crontab scripts are not working? - Ask Ubuntu

    Jan 24, 2011 · Often, crontab scripts are not executed on schedule or as expected. There are numerous reasons for that: wrong crontab notation permissions problem environment …