How do you schedule a command to run at 4:00 every
morning?

Answers were Sorted based on User's Feedback



How do you schedule a command to run at 4:00 every morning? ..

Answer / 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

How do you schedule a command to run at 4:00 every morning? ..

Answer / premitha

Using cron jobs

Is This Answer Correct ?    3 Yes 0 No

How do you schedule a command to run at 4:00 every morning? ..

Answer / king

Using cron tab scheduler

Is This Answer Correct ?    1 Yes 0 No

How do you schedule a command to run at 4:00 every morning? ..

Answer / satchi

crontab -e

* 4 * * * <command>

Is This Answer Correct ?    2 Yes 3 No

How do you schedule a command to run at 4:00 every morning? ..

Answer / guest

* 4 * * * * <command to run>

= this is in cron job

Is This Answer Correct ?    0 Yes 2 No

Post New Answer

More Shell Script Interview Questions

What is a program shell?

0 Answers  


How important is shell scripting?

0 Answers  


How to make userdefined variables to available for all other shells?

4 Answers  


What is eval in shell script?

0 Answers  


What are the advantages of shell script?

0 Answers  






write a shell script that accepts name from user and creates a directory by the path name, then creates a text file in that directory and stores in it, the data accepted from user till STOP, displays the no. of characters stored in the file.Program stops if directory name is null

1 Answers  


Explain about gui scripting?

0 Answers  


Why do we write bin bash in shell scripts?

0 Answers  


how to create purchase order

2 Answers  


What language is shell scripting?

0 Answers  


What command needs to be used to take the backup?

0 Answers  


How to rename all the files in a folder having specific extension? Example: I have some files with extension (.txt) in a folder name 'Test'. I have to rename all the .txt files in a test and its subdirectories to .my extension.

15 Answers   Interra IT,


Categories