Skip to content

Instantly share code, notes, and snippets.

@oreales
Created July 15, 2014 15:54
Show Gist options
  • Select an option

  • Save oreales/575d50aeab07a0f21ae6 to your computer and use it in GitHub Desktop.

Select an option

Save oreales/575d50aeab07a0f21ae6 to your computer and use it in GitHub Desktop.
crontab de cada usuario en unix
for user in $(cut -f1 -d: /etc/passwd); do echo $user; sudo crontab -u $user -l; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment