Sponsored Content
Top Forums Shell Programming and Scripting Question on Autosys calender date. Post 302561670 by itkamaraj on Tuesday 4th of October 2011 10:38:49 PM
Old 10-04-2011
There is not a key that allows this, but you can create custom calendars in Autosys and have your job reference that calendar. Reference the Autosys manual for how to create custom calendars and utilize them for your Autosys jobs
 

10 More Discussions You Might Find Interesting

1. Programming

C Calender Help - Unusual error

I'm making a program that you input the month and year, and it creates a calender for that month of that year. This is my largest project yet, and I broke it up into several source files. cal.c #include "cal.h" #include <stdio.h> main() { int month, year; scanf("%d %d", &month,... (3 Replies)
Discussion started by: Octal
3 Replies

2. Shell Programming and Scripting

convert Julian date to calender date

Hi, I have script in unix which creates a julian date like 126 or 127 I want convert this julian date into calender date ex : input 127 output 07/may/2007 or 07/05/2007 or 07/05/07 rgds srikanth (6 Replies)
Discussion started by: srikanthus2002
6 Replies

3. UNIX for Advanced & Expert Users

Documentation and books on Autosys Job Control Tool from Autosys

My project uses Autosys. I am new to this product and I don't know where to start from. Q1. Please provide me the link where I can get Autosys documentation Q2. Please refer a good book on Autosys. (Beginner/Intermediate Level) (0 Replies)
Discussion started by: gram77
0 Replies

4. UNIX for Dummies Questions & Answers

question in AUTOSYS

Hi all.. I have included some scripts in a autosys job .. I want to check when the particlular autosys job is sceduled . Please let me know the command . Thanks, Arun. (1 Reply)
Discussion started by: arunkumar_mca
1 Replies

5. Shell Programming and Scripting

Calender Unix programming date issues

Hi, i;m beginner of Unix, i trying to use crontab to zip my log file automatically, below is my coding, some of the statement i don't know whether is correct or not. Pls help:) year=`date '+%Y'` month=`date '+%m'` day=`date '+%d'` day=`expr $day - 1` case $month in 1 | 3 | 5 | 7 | 8 | 9 |... (4 Replies)
Discussion started by: dannyd_y
4 Replies

6. Fedora

Script to find out first day of our calender

I try to find the first day of our calender. So I used this script ... echo -n "The week of the date 01jan0001 : " echo -n `date -d 00010101 +%A` echo But its shows error bash-3.1$ sh first_day.shThe week of the date 01jan0001 : date: invalid date `00010101' (3 Replies)
Discussion started by: krishnampkkm
3 Replies

7. Shell Programming and Scripting

Autosys question

Hello, Can I store my log file on my script directory? For example I have a jil file like this .. ---script abc --- insert_job: test1 job_type: c command: /scripts/abc/test.ksh machine: machine2 owner: owner@machine permission: mx std_out_file: I want the log to be saved on... (2 Replies)
Discussion started by: arex876
2 Replies

8. UNIX for Advanced & Expert Users

Setting up complex Date conditions in Autosys

Scenario : Job A - to be started at 2230 PM everyday ( mo-fr ) Job B - Need to start after 4 hours Jobs A started,irrespective of the Jobs A status .Even if Job A has failed/Succeeded/Terminated/Running Job B should start 4 hours after Job A started.It cannot be set to 0230 AM next day because... (2 Replies)
Discussion started by: krg.sati
2 Replies

9. UNIX for Dummies Questions & Answers

Autosys: How to change a machine name in Autosys JIL.

All the autosys jobs are on server-1 and server-1 has been crashed due to some reason, Now I have to run 5 autosys jobs on server-2 (failover server) which are on server 1. How to do with Autosys command (which command needs to fired on JIL) (0 Replies)
Discussion started by: tp2115
0 Replies

10. UNIX and Linux Applications

Calender/docket software

We are running in a Linux/Samba environment. Can anyone suggest calendar/docket software that will run in our environment? (0 Replies)
Discussion started by: kbweiss
0 Replies
iCal::Parser::SAX(3pm)					User Contributed Perl Documentation				    iCal::Parser::SAX(3pm)

NAME
iCal::Parser::SAX - Generate SAX events from an iCalendar SYNOPSIS
use iCal::Parser::SAX; my $parser=iCal::Parser::SAX->new(Handler=>SAXHandler,%args); $parser->parse_uri($file); $parser->parse_uris(@files); DESCRIPTION
This module uses iCal::Parser to generates SAX events for the calendar contents. The xml document generated is designed for creating monthly calendars with weeks beginning on monday (e.g., by passing the output through an xsl styleheet). The basic structure of the generated document (if output through a simple output handler like "XML::SAX::Writer"), is as follows: <ical> <calendars> <calendar id="cal-id" index="n" name="..." description="..."/> </calendars> <events> <year year="YYYY"> <month month="[1-12]"> <week week="n"> <day date="YYYY-MM-DD"> <event uid="event-id" idref="cal-id" [all-day="1"]> <!-- ... --> </event> </day> </week> </month> </events> <todos> <todo idref="cal-id" uid="..."> <!--- ... --> </todo> </todos> </ical> Along with basics, such as converting calendar attributes to lowercase elements (e.g., a "DTSTART" attribute in the input would generate a sax event like "element({Name="'dtstart'})>), a number of other processes occur: o "day" elements are are generated for each date within the months from the first month in the input to the last, even if there are no calendar events on that day. This guarantees a complete calendar month for further processing. If there is an overlap between two or more events, the attribute "conflict", containing the number of concurrent overlaps, is added to the element. o If the beginning or end of the month does not start on a monday, or end on a sunday, the days from the previous (next) month month are duplicated within the first (last) week of the current month, including duplicate copies of any calendar events occuring on those days. This allows for displaying a monthly calendar the same way a program such as Apple's iCal would, with calendar events showing up if they fall within the overlapping days in the first or last week of a monthly calendar. METHODS
Along with the standard SAX parsing methods "parse_uri", "parse_file", etc.), the following methods are supported. new(%args) Create a new SAX parser. All arguments other than "Handler" and "no_escape" are passed to iCal::Parser. Arguments Handler The SAX handler. no_escape If not set, quotes, ampersands and apostrophes are converted to entites. In any case < is converted to an entity, "\n" is converted to the return entity and double backslashes ("\") are removed. parse_uris(@uris) Pass all the input uris to "iCal::Parser" and generate a combined output calendar. parse_hash($hash) Parse the hash returned from iCal::Parser::calendar directly. AUTHOR
Rick Frankel, cpan@rickster.com COPYRIGHT
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. The full text of the license can be found in the LICENSE file included with this module. SEE ALSO
iCal::Parser, XML::SAX::Base perl v5.14.2 2012-08-05 iCal::Parser::SAX(3pm)
All times are GMT -4. The time now is 10:46 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy