Sponsored Content
Full Discussion: crontab every 5 min.
Operating Systems AIX crontab every 5 min. Post 302691309 by bakunin on Friday 24th of August 2012 07:53:03 AM
Old 08-24-2012
Ahem...

Quote:
Originally Posted by priyak
*/5 * * * * /path/to/script.sh
This is the AIX forum! What you have suggested works on Linux (more precisely it works with the widely-used Vixie-cron), but not the AIX cron.


From the crontab man page

Quote:
Code:
These fields accept the following values:
minute 	0 through 59
hour 	0 through 23
day_of_month 	1 through 31
month 	1 through 12
weekday 	0 through 6 for Sunday through Saturday
command 	a shell command

You must specify a value for each field. Except for the command field, these fields can contain the following:

    A number in the specified range. To run a command in May, specify 5 in the month field.

    Two numbers separated by a dash to indicate an inclusive range. To run a cron job on Tuesday through Friday,
    place 2-5 in the weekday field.

    A list of numbers separated by commas. To run a command on the first and last day of January, you would specify
    1,31 in the day_of_month field.

    A combination of two numbers separated by a dash to indicate an inclusive range and a list of numbers separated
    by commas can be used in conjunction. To run a command on the first, tenth to sixteenth and last day of January,
    you would specify 1,10-16,31 in the day_of_month field. The above two points can also be used in combination.

    An * (asterisk), meaning all allowed values. To run a job every hour, specify an asterisk in the hour field.


bakunin

Last edited by bakunin; 08-24-2012 at 08:58 AM..
These 2 Users Gave Thanks to bakunin For This Post:
 

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

crontab settings for every 10 min eveyday?

Will this be the cron setting if I want to run the script.sh file in every 10 min eveyday? Can someone pls confirm? Thanks in advance C Saha (1 Reply)
Discussion started by: csaha
1 Replies

2. Post Here to Contact Site Administrators and Moderators

It seems last 20 min Server was very very Slow

Hi Guys, Since last 20-30 min Server was Too slow ..even few of times i got Database connection error. Thanks Sanjay Tripathi (0 Replies)
Discussion started by: SanjayLinux
0 Replies

3. Shell Programming and Scripting

crontab in every 05,20,35,50 min

Hi , How can i set a cronjob which needs to run every 05,20,35,50 min . I tried 05,20,35,50 * * * * /exec/eerrtis/tttttk/AOOK00000/bin/Packing.sh.. but its giving error while saving the crontab file .... What is the correct way ??? Thanks and Regards (4 Replies)
Discussion started by: scorpio
4 Replies

4. Shell Programming and Scripting

get min, max and average value

hi! i have a file like the attachement. I'd like to get for each line the min, max and average values. (there is 255 values for each line) how can i get that ? i try this, is it right? BEGIN {FS = ","; OFS = ";";max=0;min=0;moy=0;total=0;freq=890} $0 !~ /Trace1:/ { ... (1 Reply)
Discussion started by: riderman
1 Replies

5. Shell Programming and Scripting

grep for last 15 min of log

I need help trying to grep for a error in log file for only last 15 min. example under /var/adm/messages i need to grep for "error 102" but only if it occured in last 15 mins? Thanks (7 Replies)
Discussion started by: shehzad_m
7 Replies

6. Shell Programming and Scripting

How to get the counter value incremented after every 1 min?

I want to check the counter value for every 1 min until the particular counter value is reached and it should exit. Counter value: 15.( For Example) counter = 1 The start time is noted using Localtime. How can i do this in perl? Regards Archana (1 Reply)
Discussion started by: vanitham
1 Replies

7. Shell Programming and Scripting

Get min from a column conditionally

hi, i have a file with folowing content: STORAGE PERCENTAGE FLAG: /storage_01 64% 0 /storage_02 17% 1 /storage_03 10% 0 /storage_04 50% 1 I need to get the value of STORAGE from those with FLAG=0 and which has the min PERCENTAGE i am able to get the STORAGE corresponding to... (8 Replies)
Discussion started by: kichu
8 Replies

8. Solaris

min HW requirement for Solaris10?

Dear All I am using Solaris8 on my sun UltraSPARC machine. Can you please let me know what is the minimum HW requirement to install Solaris10g ? Thank you in advance (1 Reply)
Discussion started by: hadimotamedi
1 Replies

9. UNIX for Dummies Questions & Answers

Cron every 5 min

Hi, I am trying to run a script in cron every 5 min in SOLARIS 10 When I do5 * * * * /path to fileor*/5 * * * * /path to file Doesn't work. Please let me know what should I put in the cron entry Thanks (2 Replies)
Discussion started by: Rossdba
2 Replies

10. Shell Programming and Scripting

Get min and max value in column

Gents, I have a big file file like this. 5100010002 5100010004 5100010006 5100010008 5100010010 5100010012 5102010002 5102010004 5102010006 5102010008 5102010010 5102010012 The file is sorted and I would like to find the min and max value, taking in the consideration key1... (3 Replies)
Discussion started by: jiam912
3 Replies
CRONTAB(5)						      BSD File Formats Manual							CRONTAB(5)

NAME
crontab -- tables for driving cron DESCRIPTION
A crontab file contains instructions to the cron(8) daemon of the general form: ``run this command at this time on this date''. Each user has their own crontab, and commands in any given crontab will be executed as the user who owns the crontab. Uucp and News will usually have their own crontabs, eliminating the need for explicitly running su(1) as part of a cron command. Blank lines and leading spaces and tabs are ignored. Lines whose first non-space character is a pound-sign ('#') are comments, and are ignored. Note that comments are not allowed on the same line as cron commands, since they will be taken to be part of the command. Simi- larly, comments are not allowed on the same line as environment variable settings. An active line in a crontab will be either an environment setting or a cron command. An environment setting is of the form, name = value where the spaces around the equal-sign ('=') are optional, and any subsequent non-leading spaces in value will be part of the value assigned to name. The value string may be placed in quotes (single or double, but matching) to preserve leading or trailing blanks. The name string may also be placed in quotes (single or double, but matching) to preserve leading, trailing or inner blanks. Several environment variables are set up automatically by the cron(8) daemon. SHELL is set to /bin/sh, and LOGNAME and HOME are set from the /etc/passwd line of the crontab's owner. HOME and SHELL may be overridden by settings in the crontab; LOGNAME may not. (Another note: the LOGNAME variable is sometimes called USER on BSD systems... on these systems, USER will be set also.) In addition to LOGNAME, HOME, and SHELL, cron(8) will look at MAILTO if it has any reason to send mail as a result of running commands in ``this'' crontab. If MAILTO is defined (and non-empty), mail is sent to the user so named. If MAILTO is defined but empty (MAILTO=""), no mail will be sent. Otherwise mail is sent to the owner of the crontab. This option is useful if you decide on mail(1) instead of sendmail(1) as your mailer when you install cron -- mail(1) doesn't do aliasing, and UUCP usually doesn't read its mail. In order to provide finer control over when jobs execute, users can also set the environment variables CRON_TZ and CRON_WITHIN. The CRON_TZ variable can be set to an alternate time zone in order to affect when the job is run. Note that this only affects the scheduling of the job, not the time zone that the job perceives when it is run. If CRON_TZ is defined but empty (CRON_TZ=""), jobs are scheduled with respect to the local time zone. The CRON_WITHIN variable should indicate the number of seconds within a job's scheduled time that it should still be run. On a heavily loaded system, or on a system that has just been ``woken up'', jobs will sometimes start later than originally intended, and by skipping non- critical jobs because of delays, system load can be lightened. If CRON_WITHIN is defined but empty ~ CRON_WITHIN="" or set to some non-posi- tive value (0, a negative number, or a non-numeric string), it is treated as if it was unset. The format of a cron command is very much the V7 standard, with a number of upward-compatible extensions. Each line has five time and date fields, followed by a user name if this is the system crontab file, followed by a command. Commands are executed by cron(8) when the minute, hour, and month of year fields match the current time, and when at least one of the two day fields (day of month, or day of week) match the current time (see ``Note'' below). cron(8) examines cron entries once every minute. The time and date fields are: field allowed values minute 0-59 hour 0-23 day of month 1-31 month 1-12 (or names, see below) day of week 0-7 (0 or 7 is Sun, or use names) A field may be an asterisk ('*'), which always stands for ``first-last''. Ranges of numbers are allowed. Ranges are two numbers separated with a hyphen. The specified range is inclusive. For example, ``8-11'' for an ``hours'' entry specifies execution at hours 8, 9, 10, and 11. A field may begin with a question mark ('?'), which indicates a single value randomly selected when the crontab file is read. If the field contains only a question mark, the value is randomly selected from the range of all possible values for the field. If the question mark pre- cedes a range, the value is randomly selected from the range. For example, ``? ?2-5 * * *'' specifies that a task will be performed daily between 2:00am and and 5:59am at a time randomly selected when the crontab file is first read. As just one example, this feature can be used to prevent a large number of hosts from contacting a server simultaneously and overloading it by staggering the time at which a download script is executed. Lists are allowed. A list is a set of numbers (or ranges) separated by commas. Examples: ``1,2,5,9'', ``0-4,8-12''. Step values can be used in conjunction with ranges. Following a range with ``/<number>'' specifies skips of the number's value through the range. For example, ``0-23/2'' can be used in the hours field to specify command execution every other hour (the alternative in the V7 stan- dard is ``0,2,4,6,8,10,12,14,16,18,20,22''). Steps are also permitted after an asterisk, so if you want to say ``every two hours'', just use ``*/2''. Names can also be used for the ``month'' and ``day of week'' fields. Use the first three letters of the particular day or month (case doesn't matter). Ranges or lists of names are not allowed. If the crontab file is the system crontab /etc/crontab, then the next ( ``sixth'') field contains the username to run the command as. The ``sixth'' field (or the ``seventh'' one for /etc/crontab) (the rest of the line) specifies the command to be run. The entire command portion of the line, up to a newline or percent signs ('%'), will be executed by sh(1) or by the shell specified in the SHELL variable of the cronfile. Percent signs ('%') in the command, unless escaped with backslash (''), will be changed into newline characters, and all data after the first % will be sent to the command as standard input. Note: The day of a command's execution can be specified by two fields -- day of month, and day of week. If both fields are restricted (i.e., aren't *), the command will be run when either field matches the current time. For example, ``30 4 1,15 * 5'' would cause a command to be run at 4:30 am on the 1st and 15th of each month, plus every Friday. Instead of the first five fields, one of eight special strings may appear: string meaning @reboot Run once, at startup. @yearly Run once a year, ``0 0 1 1 *''. @annually (same as @yearly) @monthly Run once a month, ``0 0 1 * *''. @weekly Run once a week, ``0 0 * * 0''. @daily Run once a day, ``0 0 * * *''. @midnight (same as @daily) @hourly Run once an hour, ``0 * * * *''. EXAMPLE CRON FILE # use /bin/sh to run commands, no matter what /etc/passwd says SHELL=/bin/sh # mail any output to `paul', no matter whose crontab this is MAILTO=paul # # run five minutes after midnight, every day 5 0 * * * $HOME/bin/daily.job >> $HOME/tmp/out 2>&1 # run at 2:15pm on the first of every month -- output mailed to paul 15 14 1 * * $HOME/bin/monthly # run at 10 pm on weekdays, annoy Joe 0 22 * * 1-5 mail -s "It's 10pm" joe%Joe,%%Where are your kids?% 23 0-23/2 * * * echo "run 23 minutes after midn, 2am, 4am ..., everyday" 5 4 * * sun echo "run at 5 after 4 every sunday" ? ?2-4 1,15 * * echo "random between 2am-4:59am on the 1st and 15th" SEE ALSO
crontab(1), cron(8) STANDARDS
When specifying day of week, both day 0 and day 7 will be considered Sunday. BSD and ATT seem to disagree about this. Lists and ranges are allowed to co-exist in the same field. ``1-3,7-9'' would be rejected by ATT or BSD cron -- they want to see ``1-3'' or ``7,8,9'' ONLY. Ranges can include ``steps'', so ``1-9/2'' is the same as ``1,3,5,7,9''. Names of months or days of the week can be specified by name. Environment variables can be set in the crontab. In BSD or ATT, the environment handed to child processes is basically the one from /etc/rc. Command output is mailed to the crontab owner (BSD can't do this), can be mailed to a person other than the crontab owner (SysV can't do this), or the feature can be turned off and no mail will be sent at all (SysV can't do this either). All of the '@' commands that can appear in place of the first five fields are extensions. AUTHORS
Paul Vixie <paul@vix.com> BSD
July 15, 2010 BSD
All times are GMT -4. The time now is 02:56 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy