I have an old Ubuntu system. crontab -l
shows that a particular job is running every 30 minutes:
# m h dom mon dow command
30 * * * * ~/scripts/ferc.sh
However, I am unable to find this line in /etc/crontab
or any file in all of the /etc/cron.*
folders.
Where else can cron configuration be kept?
/var/spool/cron/crontabs/$USER
, but you should edit it withcrontab -e
– Pablo Bianchi Oct 29 '19 at 04:31