User Tools

Site Tools


list_all_crons

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
list_all_crons [2015/09/08 09:21] luke7858list_all_crons [2024/05/23 07:26] (current) – external edit 127.0.0.1
Line 1: Line 1:
-List cron for a user:+=== List cron for a specific user:===
 <sxh bash> <sxh bash>
 crontab -u username -l crontab -u username -l
 </sxh> </sxh>
-List crons for every user+\\ 
 +===List crons for every user ===
 <sxh bash> <sxh bash>
 for user in $(cut -f1 -d: /etc/passwd); do echo -$user-; crontab -u $user -l; done for user in $(cut -f1 -d: /etc/passwd); do echo -$user-; crontab -u $user -l; done
Line 11: Line 12:
 <sxh bash> <sxh bash>
 for cron in `ls -1 /var/spool/cron/crontabs/`; do echo "${cron}'s crontab";crontab -l -u $cron | grep -v '#' ;echo;done for cron in `ls -1 /var/spool/cron/crontabs/`; do echo "${cron}'s crontab";crontab -l -u $cron | grep -v '#' ;echo;done
 +</sxh>
 +\\
 +=== Viewing Cron Start Time ===
 +<sxh bash>
 +date; echo; ps -ef --sort=start_time | grep php | head -n 15
 </sxh> </sxh>
list_all_crons.1441704099.txt.gz · Last modified: 2024/05/23 07:26 (external edit)

Except where otherwise noted, content on this wiki is licensed under the following license: Public Domain
Public Domain Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki