Tuesday, 11 January 2022

Cron Tabs | Cron Jobs Linux Administration

 

Cron daemon to shedule tasks that run repeatly after specific times

crontab- l list current user crontable
crontab -e edit current user crontable
crontab -d delete current user crontable


cat job1
crontab 
ping apple.com

job 1
ping robo.com
job2
ping google.com
crontab -e 
select-editor
42 19 19 10 5 /home/mycronjobs/job1
42 19  * * * /home/mycronjobs/job2
:w
ps aux | grep ping 
ps procss 

kill  psid 
kill 22780








No comments:

Post a Comment