Why is Python mostly used in running cron jobs or automating tasks?

Why is Python mostly used in running cron jobs or automating tasks?

Geek Evident Asked on November 29, 2017 in Technology.
Add Comment
  • 1 Answer(s)

      The software utility cron is a time-based job scheduler in Unix-like computer operating systems. People who set up and maintain software environments usecron to schedule jobs (commands or shell scripts) to run periodically at fixed times, dates, or intervals. … cron is most suitable for scheduling repetitive tasks

      During system administration, it’s necessary to run background jobs on a server to execute routine tasksCron is a system process which is used to execute background tasks on a routine basis. Cron requires a file called crontab which contains the list of tasks to be executed at a particular time.Cron. The software utility cron is a time-based job scheduler in Unix-like computer operating systems. People who set up and maintain software environments use cron to schedule jobs (commands or shell scripts) to run periodically at fixed times, dates, or intervals.

      Geek Evident Answered on June 20, 2018.
      Add Comment

      Your Answer

      By posting your answer, you agree to the privacy policy and terms of service.