Sponsored Content
Full Discussion: Formating cal output
Top Forums Shell Programming and Scripting Formating cal output Post 302102572 by Krrishv on Thursday 11th of January 2007 09:46:01 AM
Old 01-11-2007
Perfect ! thanks.
 

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

formating output

I have a file proc.txt which contains the below one. Content-type: text/html <H2>No query</H2> infodba-marabou:/tmp => export QUERY_STRING="IMAN_server_report=full" infodba-marabou:/tmp => $IMAN_ROOT/web/htdocs/cgi-bin/iman > /tmp/proc.txt infodba-marabou:/tmp => cat proc.txt... (20 Replies)
Discussion started by: Krrishv
20 Replies

2. Shell Programming and Scripting

formating array file output using perl

Hello, I am trying to output the values in an array to a file. The output needs to be formated such that each array value is left jusified in a field 8 character spaces long. Also, no more than 6 fields on a line. For example: @array= 1..14; Needs to be output to the file like so: 1 ... (4 Replies)
Discussion started by: seismic_willy
4 Replies

3. Shell Programming and Scripting

Output formating

Dear All I am stuck in one problem. Kindly help me. I am taking below mention file as input file and want some op file as mention below. Kindly send me all possible suggestion and query. Thnaks Jaydeep bELOW IS THE INPUT FILE: *** Connected to BSCANGR ***... (1 Reply)
Discussion started by: jaydeep_sadaria
1 Replies

4. Shell Programming and Scripting

Problem In Formating Table as Output

Hi! I'm working a program that collects 4 various inputs and format my output into tabular form.Problem is my table margins move with different character lengths. Is there a way to fix my table margins even though the variables inside the table varies in length? thank you very much...:( (1 Reply)
Discussion started by: Lo11001
1 Replies

5. Shell Programming and Scripting

formating output

Hi all, I want to start a new topic on this matter I have this script, #!perl use strict; use warnings; use Data::Dumper; open my $log, '>', 'log-external.txt' or die "Could not open log: $!"; print $log "Subnet,Static,DHCP,Unused\n"; open my $dump, '>', 'dump.log' or die... (2 Replies)
Discussion started by: richsark
2 Replies

6. Shell Programming and Scripting

Getting a specific date from cal output with AWK

Hi guys! I'll make this short... Is there any good way to get the day number that first matches the Monday column from the cal command output with awk (or any other text manipulator commands) ? I'm sorry if my question wasn't clear at all. For example... One cal output would be $... (6 Replies)
Discussion started by: Casey
6 Replies

7. Shell Programming and Scripting

Formating output

Hello Team i have a file with following data (as columns). I need implement a syntax like below for altering table ALTER TABLE1 TABLENAME ADD COLUMN COL1 CHAR(5) NOT NULL WITH DEFAULT ADD COLUMN COL2 CHAR(5) .. .. ADD COLUMN COLn CHAR(5) NOT NULL... (1 Reply)
Discussion started by: rocking77
1 Replies

8. Shell Programming and Scripting

Center output of 'cal' command in terminal

I have a function to center output in a terminal. However It only works for variables. I would like to center the output of the command 'cal' or 'cal -3' in a terminal. I have tried: center `cal` CAL=`cal`; center $CAL cal > cal.txt; center `cat cal.txt` center "`exec cal`" To no avail,... (10 Replies)
Discussion started by: AlphaLexman
10 Replies

9. UNIX for Advanced & Expert Users

Formating and Parsing Autosys output

if you want to parse the output from an autosys you can use the below autorep -j Prefix_% | awk '{ if ($6 ~ /^/) printf "%-20s \t\t %-20s\n",$1,$5 ; else if ($6 ~ /^/) printf "%-20s \t\t %-20s\n",$1,$6; else printf "%-20s \t\t %-20s\n",$1,$4 }' | awk '{ if ($2... (1 Reply)
Discussion started by: phpsnook
1 Replies

10. Shell Programming and Scripting

Formating output in html

Hi Guys, I was searching and landed up something here only. This is the code and I want the formatted html in email but that is not working, anybody knows the reason why? #!/bin/sh set -x DATE=`date -u` # Print beginning of webpage function html_header { cat <<END ... (5 Replies)
Discussion started by: bluemind2005
5 Replies
Cal::DAV(3pm)						User Contributed Perl Documentation					     Cal::DAV(3pm)

NAME
Cal::DAV - a CalDAV client SYNOPSIS
my $cal = Cal::DAV->new( user => $user, pass => $pass, url => $url); # the ics data will be fetched automatically if it's there # ... or you can parse some ics $cal->parse(filename => $data); # cal now has all the methods of Data::ICal # you can now monkey around with the object # saves the updated calendar $cal->save; # deletes the calendar $cal->delete; # lock the file on the server $cal->lock; # unlock the file on the server $cal->unlock # steal the lock $cal->steal_lock; # also $cal->forcefully_unlock_all # and $cal->lockdiscovery # resyncs it with the server $cal->get; # Get the underlying HTTP::DAV object my $dav = $cal->dav; DESCRIPTION
"Cal::DAV" is actually a very thin wrapper round "HTTP::DAV" and "Data::ICal" but it may gain more functionality later and, in the mean time, serves as something that TESTING
In order to test you need to define three environment variables: "CAL_DAV_USER", "CAL_DAV_PASS" and "CAL_DAV_URL_BASE" which points to a DAV collection that the user supplied has write permissions for. It should be noted that, at the moment, I'm having problems finding a CalDAV server that allows me to create files and so I can't run all the tests. METHODS
new <arg[s]> Must have at least "user", "pass" and "url" args where "url" is the url of a remote, DAV accessible ".ics" file. Can optionally take an "auto_commit" option. See "auto_commit()" method below. parse <arg[s]> Make a new calendar object using same arguments as "Data::ICal"'s "new()" or "parse()" methods. Does not auto save for you. Returns 1 on success and 0 on failure. save [url] Save the calendar back to the server (or optionally to another path). Returns 1 on success and 0 on failure. delete [url] Delete the file on the server or optionally another url. Returns 1 on success and 0 on failure. get [url] Refetch the file from the sever to sync it - Alternatively fetch an alternative url. These will lose any local changes. lock Same options as "HTTP::DAV"'s "unlock". unlock Same options as "HTTP::DAV"'s "unlock". steal_lock Same options as "HTTP::DAV"'s "steal_lock". lockdiscovery Same options as "HTTP::DAV::Response"'s "lockdiscovery". forcefully_unlock_all Same options as "HTTP::DAV::Response"'s "forcefully_unlock_all". dav [HTTP::DAV] Get the underlying "HTTP::DAV" object or, alterntively, replace it with a a new one. cal Get the underlying cal object auto_commit [boolean] Whether to auto save on desctruction or not. Defaults to 0. message Same as "HTTP::DAV"'s "message" function. errors Same as "HTTP::DAV"'s "errors" function. AUTHOR
Simon Wistow <simon@thegestalt.org> COPYRIGHT
Copyright 2007, Simon Wistow Released under the same terms as Perl itself. SEE ALSO
HTTP::DAV Data::ICal http://tools.ietf.org/html/rfc4791 perl v5.12.3 2011-05-08 Cal::DAV(3pm)
All times are GMT -4. The time now is 05:19 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy