Job Scheduling or Scheduling jobs Manually
Job Scheduling- As a system administrator some tasks are respective like backup. monitoring, log files. To automate them below the commands or keys -at -batch -crontab Crontab: to run some tasks automatically to set a crontab for an user #crontab -e -u <user name> * * * * * /bin/echo "hello" A crontab file contains instructions to the cron deamon of the general form "run this command at this time on this date" Cron examines entries once every minute Time mentioned here field allowed values ----- -------------- minutes 0-59 hour 0-23 day of month 1-31 month ...
Comments
Post a Comment