Tag: crontab

  • Locating crontab scheduled tasks in *nix

    If you need a list of all users crontab tasks, run this as root: for user in $(cut -f1 -d: /etc/passwd); do crontab -u $user -l; done   will loop over each user name listing out their crontab. The crontabs are owned by the respective users so you won’t be able to see another user’s…