How do you schedule a command to run at 4:00 every
morning?
Answer Posted / swaroopa
Step 1. Set environemen variable EDITOR=vi if not set
Step 2. Give command crontab -e
Step 3. Add following entry at the end
0 4 * * * <Your command to run at 4:00 am morning>
1. There are two ways to schedule a script to run exactly
at 4:00 AM every morning
a: CRONTAB
b. AT (at command executes only once)
Crontab format
* * * * * <command>
<minute> <hour> <date> <month> <day_of_the_week> command
<0-59> <0-23> <1-31> <1-12> <0-
7> command
| Is This Answer Correct ? | 23 Yes | 0 No |
Post New Answer View All Answers
What is a shell environment?
What does it mean by #!/Bin/sh or #!/Bin/bash at the beginning of every script?
Why is shell scripting important?
What is meant by dos operating system?
What is scripting used for?
What's the difference between scripting and coding?
How do I run a script on mac?
Explain about gui scripting?
How do I run a script from command prompt?
What is the fastest scripting language?
What is subshell?
How do I run a powershell script?
What is @echo off?
how to print the matrix form of 2-d, 3-d arrays in unix c shell scripts ?
How do I debug a shell script?