Cybersecurity
DevOps Cloud
IT Operations Cloud
OpenText product name changes coming to the community soon! Learn more.
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