Sunday, April 18, 2010

Add a job to crontab that runs every minute on AIX

  • crontab -e
  • 0-59 * * * * hobba
crontab -e: opens a text file (via vi) to add your job
0-59: is to run every minute
hobba: is the command to run, it's either a Unix command or a script

No comments: