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

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



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is the export command used for?

517


How do I find the linux version?

503


what is the fastest way to enter a series of commands from the command-line in linux

522


What is the use of cp p command?

563


What does c mean in linux?

565






What are the basic command in linux?

532


What could be the problem when a command that was issued gave a different result from the last time it was used?

688


What is kill 9 in linux?

573


What does df command do in linux?

542


How do I clear bash history in linux?

527


Which command is used to uncompress gzip files?

589


What does curl command do in linux?

486


Why is linux cpu usage so high?

536


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

520


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

1158