How to check if my server has assigned any cron job or not?

Is it possible to check the list of cron jobs assigned to my server using putty or winscp or some other validation methods. Since I could find the cron job in side my cpanel tab

+4
source share
1 answer

You can check for the current user

crontab -l 

List of available commands using crontab

For all users, take a look at:

 /var/cron/tabs #OR /var/spool/cron/crontabs 
+10
source

Source: https://habr.com/ru/post/1415916/


All Articles