OpenText product name changes coming to the community soon! Learn more.

Wikis - Page

Support Tip: How to list the CRON jobs of all the users in Linux?

0 Likes

The following script can be used to list the CRON jobs of all the users in Linux:

for user in $(cut -f1 -d: /etc/passwd);

do

echo $user

crontab -u $user -l;

done

Labels:

SMA-X
Support Tips/Knowledge Docs
Comment List
Related
Recommended