Linux - Newbie This Linux forum is for members that are new to Linux.
Just starting out and have a question?
If it is not in the man pages or the how-to's this is the place! |
Notices |
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
Are you new to LinuxQuestions.org? Visit the following links:
Site Howto |
Site FAQ |
Sitemap |
Register Now
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
Get a virtual cloud desktop with the Linux distro that you want in less than five minutes with Shells! With over 10 pre-installed distros to choose from, the worry-free installation life is here! Whether you are a digital nomad or just looking for flexibility, Shells can put your Linux machine on the device that you want to use.
Exclusive for LQ members, get up to 45% off per month. Click here for more info.
|
|
07-31-2012, 01:24 PM
|
#1
|
LQ Newbie
Registered: Jul 2012
Posts: 1
Rep:
|
Linux commands
Hi guys,
I am programming an ip camera that uses LINUX commands and need some help.The following line executes the ftp file every 30 min.
*/30 * * * * admin /etc/config/ftp
I am trying to execute the file every 30 minutes but only on a window from 8 to 7pm. I tried the following line but it didnt work.
30 8,9,10,11,12,13,14,15,16,17,18,19 * * * admin /etc/config/ftp
Any help is greatly appreciated. Thanks!
|
|
|
07-31-2012, 01:55 PM
|
#2
|
LQ Newbie
Registered: Apr 2006
Location: Minneapolis, Minnesota, USA
Posts: 16
Rep:
|
Quote:
Originally Posted by camsis
Hi guys,
I am programming an ip camera that uses LINUX commands and need some help.The following line executes the ftp file every 30 min.
*/30 * * * * admin /etc/config/ftp
I am trying to execute the file every 30 minutes but only on a window from 8 to 7pm. I tried the following line but it didnt work.
30 8,9,10,11,12,13,14,15,16,17,18,19 * * * admin /etc/config/ftp
Any help is greatly appreciated. Thanks!
|
Other than missing the "*/" in front of the 30 minute parameter, I think what you have should work. (This is according to the "man 5 crontab" man page on my RH system.) A slightly shorter specification, for all of us lazy programers, would be "*/30 8-19 * * * ..."
Jim Young
|
|
1 members found this post helpful.
|
07-31-2012, 02:13 PM
|
#3
|
Member
Registered: Aug 2011
Distribution: Ubuntu, Fedora
Posts: 175
Rep:
|
crontab -e
54 12 * * * /file/path/backup.sh
1 2 3 4 5 /root/backup.sh
Where,
1: Minute (0-59)
2: Hours (0-23)
3: Day (0-31)
4: Month (0-12 [12 == December])
5: Day of the week(0-7 [7 or 0 == sunday])
/path/to/command - Script or command name to schedule
Easy to remember format:
* * * * * 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)
|
|
|
All times are GMT -5. The time now is 01:17 AM.
|
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.
|
Latest Threads
LQ News
|
|