under debian as a root (using su -)
First of all there is already a job inside the server (done by someone else), when I type
crontab -e
I get
# m h dom mon dow command
* * * * * sh /opt/somescript.sh
It executes exery minute.
Anyway, I am trying to add a scheduled job to the crontab:
I want tried to add a second job that will be executed every day at 00:30 am.
30 0 * * * sh /opt/newscript.sh
I have two problems:
- I am not able to edit the crontab with
crontab -e
- Is my newscript scheduling right ?
No comments:
Post a Comment