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

Who whoami linux?

0 Answers  


Where is command history stored in linux?

0 Answers  


What is filter command in unix?

0 Answers  


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

10 Answers   Google,


if i have one folder say aaa and that folder having 100 files from that 50 files there aaa word is written how to find in which aaa is writen and without opening that file

6 Answers  






What are the examples of simple command?

0 Answers  


In /boot/grub/grub.conf file there is a line kernel /vmlinuz-version ro root=/dev/sda2, What is the meaning of "/" before vmlinuz? Pls explain?

1 Answers   HCL,


tell me command for" to create more than one name to a file".

3 Answers   Google,


You wish to restore the file memo.ben which was backed up in the tarfile mybackup.tar. What command should you type?

0 Answers  


Explain getopts command of linux?

0 Answers  


What the command used for list the contents of your home directory, current directory and all subdirectories?

0 Answers  


Is llvm a virtual machine?

0 Answers  


Categories