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

What does mkdir do in linux?

0 Answers  


How do I find previous commands in linux?

0 Answers  


How do I do a whois search?

0 Answers  


What is nbtstat command?

0 Answers  


What does make clean command do?

0 Answers  






How did you do the Health check in Linux?

1 Answers   Mind Tree,


You suspect that you have two commands with the same name as the command is not producing the expected results. What command can you use to determine thelocation of the command being run?

0 Answers  


Does linux cp command overwrite?

0 Answers  


How can I check the exit status of my previous command in Linux operating system?

0 Answers   SwanSoft Technologies,


What is free linux?

0 Answers  


you wish to create a link to the /data directory in bob's home directory so you issue the command ln /data /home/bob/datalink but the command fails. What options hould you use in this command line to be successful.

0 Answers  


what is command like " #(cd unixos; pwd) " tell me OUTPUT

10 Answers   Google,


Categories