When migrating from one system to another it is good to know if there are cron jobs from other users on the system, here is how to display all of them:
for i in `cat /etc/passwd | cut -f 1 -d ‘:’`; do crontab -u $i -l; done Continue reading
When migrating from one system to another it is good to know if there are cron jobs from other users on the system, here is how to display all of them:
for i in `cat /etc/passwd | cut -f 1 -d ‘:’`; do crontab -u $i -l; done Continue reading
Powered by WordPress | Theme: Aeros 2.0 by TheBuckmaker.com