Skip to content

Instantly share code, notes, and snippets.

@rdeavila
Created September 9, 2013 12:35
Show Gist options
  • Save rdeavila/6494997 to your computer and use it in GitHub Desktop.
Save rdeavila/6494997 to your computer and use it in GitHub Desktop.
Como ver o Crontab de todos os usuários
#!/bin/bash
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