Sponsored Content
Top Forums UNIX for Dummies Questions & Answers Unscheduled crontab execution Post 302313021 by vbe on Monday 4th of May 2009 11:34:16 AM
Old 05-04-2009
I agree with methyls answer:
I understand run on may 25 and every sundays (in May...). Depending when you modified your cronfile last year (lets say the 22nd May) you would not have noticed any strange behaviour because the following sunday was ... the 25th... and the last sunday of May...
 

9 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

execution without ./

I want to execute a shell script without ./ symbol. For example: ./my_script ===== my_script (both of them can execute my script) both of them are the same as result. (7 Replies)
Discussion started by: mehmetned
7 Replies

2. Shell Programming and Scripting

crontab execution

is it possible to soecify time overnight in 5 days for example: 0 18-7 * * 1-5 /mycode is this okay to use 18-7 because im not getting the results correctly? (4 Replies)
Discussion started by: vadharah
4 Replies

3. UNIX for Dummies Questions & Answers

Execution problems with crontab

I need your help please Inin a production system i found crontab entries was removed because i typed crontab -l with username corasc and didn't show anything. i asked the administrador to restored the mentioned crontab, he restored the crontab: The problem is when restored the crontab file is... (2 Replies)
Discussion started by: alexcol
2 Replies

4. UNIX for Dummies Questions & Answers

Problem with Crontab execution

Hi I have shell script to excute the SQL script.And i have scheduled those shell script in crontab.But the Shell script is not running timely and i got the below error Crontab entry 15 05 17 7 * /export/home/vcpsapp/vcps/stat.sh Output Your "cron" job on uspxivus16... (3 Replies)
Discussion started by: mak_boop
3 Replies

5. Shell Programming and Scripting

Expect Issue Serial Forground Execution vs Concurrent Background Execution

I have an expect script that interrogates several hundred unix servers for both access and directories therein using "ssh user@host ls -l /path". The combination of host/path are unique but the host may be interrogated multiple times if there are multiple paths to test. The expect script is run... (2 Replies)
Discussion started by: twk
2 Replies

6. Shell Programming and Scripting

Execution of Unix script after every second without crontab

Hi, I have shell script "A" which is executing oracle pl/sql procedure and initiate its multiple threads at a time as below on given user value in an other script "B". I want to execute script "A" after every second with out cron tab as " A " will keep on executing after every second till... (1 Reply)
Discussion started by: saad.imran@gmai
1 Replies

7. Shell Programming and Scripting

Problem with Job execution using crontab

Hi All, I am facing a problem with crontab.I made an entry in crontab like this 05 07 * * * /afs2/cdwfullacc/current/exe/cdw_generate_special_klant.sh > /afs2/cdwfullacc/current/scratch/cdw_gen_cron.log But job was not getting executed. Entry in crontab was made with same user by whom... (4 Replies)
Discussion started by: krishna_gnv
4 Replies

8. UNIX for Dummies Questions & Answers

Execution Problems with Crontab

Dear Folks, I have written a shell script which internally connects to oracle database through sqplplus command line. The script runs fine when run manually. Now I am scheduling it to run (Linux environment) from crontab. In crontab it is failing with an error: sqlplus command... (6 Replies)
Discussion started by: tamojitc
6 Replies

9. HP-UX

Crontab Execution

Hi Guys, I need help to clear my doubt w.r.t Crontab execution. uname -a HP-UX myservername B.11.31 U ia64 1422528451 unlimited-user licenseI created a crontab entry to execute particular job on Saturday 11/15/2014 11:22 Below is the cron entry #refresh DEVDB from PRODDB 22 11 15 11 6... (6 Replies)
Discussion started by: rocky.community
6 Replies
shevek::absolute_time(3)				     Library Functions Manual					  shevek::absolute_time(3)

NAME
shevek::absolute_time - The absolute_time class stores a date and time. SYNOPSIS
#include <time.hh> Public Member Functions absolute_time () Create a new absolute_time containing the current time. absolute_time (unsigned years, unsigned months, unsigned days, unsigned hours, unsigned minutes, unsigned seconds, unsigned nanoseconds=0) A specific time. absolute_time (timetype seconds, unsigned nanoseconds) Fast constructor. absolute_time operator+ (relative_time that) const Add an interval to this moment. absolute_time operator- (relative_time that) const Subtract an interval from this moment. relative_time operator- (absolute_time that) const Compute the interval between two moments. absolute_time & operator+= (relative_time that) Add an interval to this moment. absolute_time & operator-= (relative_time that) Subtract an interval from this moment. bool operator< (absolute_time that) const Compare two moments. bool operator> (absolute_time that) const Compare two moments. bool operator<= (absolute_time that) const Compare two moments. bool operator>= (absolute_time that) const Compare two moments. bool operator== (absolute_time that) const Compare two moments. bool operator!= (absolute_time that) const Compare two moments. unsigned nanoseconds () const Get the nanoseconds. unsigned local_second () const Get the seconds in local time. unsigned local_minute () const Get the minutes in local time. unsigned local_hour () const Get the hour in local time. unsigned local_days () const Get the day of the year in local time, range 0-365. unsigned local_day () const Get the day of the month in local time, range 1-31. unsigned local_weekday () const Get the day of the week in local time, range 0-6 where 0 means sunday. unsigned local_month () const Get the month in local time, range 1-12. unsigned local_year () const Get the year in local time. unsigned second () const Get the seconds in UTC. unsigned minute () const Get the minutes in UTC. unsigned hour () const Get the hour in UTC. unsigned days () const Get the day of the year in UTC, range 0-365. unsigned day () const Get the day of the month in UTC, range 1-31. unsigned weekday () const Get the day of the week in UTC, range 0-6 where 0 means sunday. unsigned month () const Get the month in UTC, range 1-12. unsigned year () const Get the year in UTC. timetype total () const Total number of seconds since january 1970, as encoded. sigc::connection schedule (sigc::slot0< void > callback, Glib::RefPtr< Glib::MainContext > context=Glib::MainContext::get_default()) Schedule a callback at a certain time. Static Public Member Functions static absolute_time create_from_local (unsigned years, unsigned months, unsigned days, unsigned hours, unsigned minutes, unsigned seconds, unsigned nanoseconds=0) Semi-constructor which creates a new absolute_time given a date in local time. static void set_digits (unsigned num) Set number of digits to use when printing (for fractions of seconds) static unsigned get_digits () Get the number of digits which is used when printing. Friends sigc::connection schedule (sigc::slot0< void > callback, int prio, Glib::RefPtr< Glib::MainContext > context) Schedule a callback for when the main loop has time. std::ostream & operator<< (std::ostream &s, absolute_time t) Write the time to a std::ostream. Detailed Description The absolute_time class stores a date and time. Everything is in UTC, except the output of local_* (); Constructor &; Destructor Documentation shevek::absolute_time::absolute_time () Create a new absolute_time containing the current time. Note that this makes a call to gettimeofday, which is much slower than specifying seconds and nanoseconds. Thus, if you need an absolute_time object to fill with an actual time later, use absolute_time foo (0, 0); instead of this default constructor. shevek::absolute_time::absolute_time (unsignedyears, unsignedmonths, unsigneddays, unsignedhours, unsignedminutes, unsignedseconds, unsignednanoseconds = 0) A specific time. days may be 0-365, with months 0. If months > 0, both days and months have a base of 1. shevek::absolute_time::absolute_time (timetypeseconds, unsignednanoseconds) Fast constructor. This directly fills the internal structures. It is therefore faster than the other constructors, in particular the default constructor, which makes a kernel call. Member Function Documentation static absolute_time shevek::absolute_time::create_from_local (unsignedyears, unsignedmonths, unsigneddays, unsignedhours, unsignedminutes, unsignedseconds, unsignednanoseconds = 0) [static] Semi-constructor which creates a new absolute_time given a date in local time. The input is the same as for the similar constructor. bool shevek::absolute_time::operator!= (absolute_timethat) const Compare two moments. Note that this is rarely a useful operation, because minor errors may be introduced by computations. In other words: only use this on times which have been set, never on times which have been computed. bool shevek::absolute_time::operator== (absolute_timethat) const Compare two moments. Note that this is rarely a useful operation, because minor errors may be introduced by computations. In other words: only use this on times which have been set, never on times which have been computed. Author Generated automatically by Doxygen for libshevek from the source code. libshevek Fri May 11 2012 shevek::absolute_time(3)
All times are GMT -4. The time now is 05:20 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy