You can create a script to fetch list of all cronjobs..
1. SSH your server with root user
2. Create a file "getcronlist.sh" with following code into this file:
Code:
#!/bin/bash
cd /var/spool/cron
ls -1 > /root/userscronjobs.txt
for i in `cat /root/userscronjobs.txt`
do
echo "######For the user $i######" >> /root/cron_list.txt
echo "" >> /root/cron_list.txt
cat $i >> /root/cron_list.txt
echo "" >> /root/cron_list.txt
echo "###########################" >> /root/cron_list.txt
echo "" >> /root/cron_list.txt
done
3. Execute "getcronlist.sh"
4. Now you can view the result from "/root/cron_list.txt"