Write a cron entry for the following scenario:-
At 10:30 AM for every Sunday of every 1st month of a
quarter.

Answers were Sorted based on User's Feedback



Write a cron entry for the following scenario:- At 10:30 AM for every Sunday of every 1st month of ..

Answer / stephen

30 10 * 1,4,7,10 0

Is This Answer Correct ?    25 Yes 3 No

Write a cron entry for the following scenario:- At 10:30 AM for every Sunday of every 1st month of ..

Answer / santhosh

30 10 * 1-12/3 7
this is the correct answer

or

you can use

30 10 * 1,4,7,10 7

(NOTE: For Sunday you can use 0 or 7)

Is This Answer Correct ?    10 Yes 0 No

Write a cron entry for the following scenario:- At 10:30 AM for every Sunday of every 1st month of ..

Answer / majeed090

* * * * * command to be executed
- - - - -
| | | | |
| | | | ----- Day of week (0 - 7) (Sunday=0 or 7)
| | | ------- Month (1 - 12)
| | --------- Day of month (1 - 31)
| ----------- Hour (0 - 23)
------------- Minute (0 - 59)

crontab -e for entry.

30 10 * 1,4,7,10 7

Is This Answer Correct ?    3 Yes 1 No

Write a cron entry for the following scenario:- At 10:30 AM for every Sunday of every 1st month of ..

Answer / sunny

30 10 0 */3 7

Is This Answer Correct ?    4 Yes 4 No

Write a cron entry for the following scenario:- At 10:30 AM for every Sunday of every 1st month of ..

Answer / phani

30 10 0 1/3 *

Is This Answer Correct ?    1 Yes 2 No

Write a cron entry for the following scenario:- At 10:30 AM for every Sunday of every 1st month of ..

Answer / harsh

this one is correct

30 10 * */3 0

Is This Answer Correct ?    1 Yes 2 No

Write a cron entry for the following scenario:- At 10:30 AM for every Sunday of every 1st month of ..

Answer / harsh chauhan

30 10 * */3 7

Is This Answer Correct ?    0 Yes 2 No

Post New Answer

More Linux Commands Interview Questions

How do I know my linux shell version?

0 Answers  


What does comm do and how to use it?

0 Answers  


Write a command that will look for files with an extension "c", and has the occurrence of the string "apple" in it.

0 Answers  


What is echo command in batch file?

0 Answers  


What language is a makefile written in?

0 Answers  






what is the command to make a process to run in the background from foreground?

5 Answers   Patni,


i am prepairing for 2+ yrs exp in oracle/unix production support, which topics should i cover in unix/linux and sql plz help

2 Answers   HCL,


A file which is not deleted by normal user and also root (using rm), for that type of file how we delete it?

5 Answers   CTS,


what is Bourne shell.

1 Answers   Google, HCL, Infosys,


What is p command?

0 Answers  


how do u extract files from iso cd images in linux?

5 Answers   Wipro,


What are the linux commands used in devops?

0 Answers  


Categories