Using "at" command

how can i execute a script at the same time everyday using "at" ???
for example if i wan to run the script "tims.sh" everyday at 6:00 am
what will be the command??

I would recommend using crontab instead if you want to schedule your script to run everyday @ 6:00 am.

  1. Edit your crontab file:
crontab -e
  1. Create an entry for your script to run @ 6:00 am:
0     6      *     *     *         /path_to_script/tims.sh
  1. Save your crontab file.
1 Like