Sponsored Content
Full Discussion: Difference in date
Top Forums Shell Programming and Scripting Difference in date Post 302477177 by Corona688 on Friday 3rd of December 2010 01:00:48 PM
Old 12-03-2010
Quote:
Originally Posted by rbatte1
I might have to just write a utility ksh program to basically count my way along, but it won't really be that concise I suppose.
Without concise tools, there's not a concise way. Check radouluv's post.
 

10 More Discussions You Might Find Interesting

1. UNIX for Advanced & Expert Users

date difference

Hi...I need some help with a date script. I need to allow the user to enter the month (alpha) day (int) and year (YYYY) and count the difference in number of days since Jan 1, 1952 to the users date. I've been messing with this for about 10 hours and I think I'm just making the script worse =( ... (1 Reply)
Discussion started by: mtnbaby
1 Replies

2. UNIX for Dummies Questions & Answers

date difference

Hi Can any buddy give mi a simple program or logic or command which will get difference between two dates ex:diff between 20051008 2005908 is 24hours 12 min 2 sec regards (1 Reply)
Discussion started by: rajuMBT
1 Replies

3. Shell Programming and Scripting

date difference

if there are two date one is entered by user and another is system date than how can we finds day difference between these two date try to make it within 4 lines (2 Replies)
Discussion started by: piyush_movadiya
2 Replies

4. Linux

date difference

hi, i have 2 dates in the form: '20080315120030' and '20080310140030'. i.e. YYYYMMDDHHMMSS. i need a way of getting the difference between them using shell script. any thoughts? (14 Replies)
Discussion started by: muay_tb
14 Replies

5. Shell Programming and Scripting

difference in date

Hi All! I would like to know the time difference between two dates which are in same format... $ date -r abc Thu Oct 29 09:40:37 EDT 2009 $ date Fri Oct 30 02:07:03 EDT 2009 i would like to find the diff between these two dates in hours..please help..:) Regards, Kiran (3 Replies)
Discussion started by: dddkiran
3 Replies

6. Homework & Coursework Questions

help with the date difference

1. The problem statement, all variables and given/known data: The problem i have is that i probably make a few mistake here in the code but don't know what it is and i try to get the date difference but don't know where to add the days_in_month function 2. Relevant commands, code,... (1 Reply)
Discussion started by: mgyeah
1 Replies

7. Programming

Date difference

I tried the below code to find difference between two dates. It works fine if the day of the month is 2-digit number. But it fails when we have a single-digit day of month(ex:1-9). my code is as below. please help me soon. #!/usr/bin/perl -w use strict; use Time::Local; ... (2 Replies)
Discussion started by: anandrec
2 Replies

8. Shell Programming and Scripting

Date difference

HI All , i need a bash script to find the number of days between two dates . Format YYYY-MM-DD THanks, Neil (1 Reply)
Discussion started by: nevil
1 Replies

9. AIX

Time Difference between date and date -u

Hi Everyone, We are having an issue with date and date -u in our AIX Systems. We have checked environment variable TZ and /etc/environment and however, we could not rectify the difference. >date Thu Mar 19 22:31:40 IST 2015 >date -u Thu Mar 19 17:01:44 GMT 2015 Any clue... (5 Replies)
Discussion started by: madhav.kunapa
5 Replies

10. Shell Programming and Scripting

Difference between two date

Hi, I created a script for finding the duration of a job using the start and end time of the job. But the command doesnt calculate correct value if the duration is more than 24 hours. Any help would be really good . cat test1 --- start time 03/27/15 17:41:00 03/24/15 11:58:04 03/23/15... (3 Replies)
Discussion started by: rogerben
3 Replies
DACSCOOKIE(1)						       DACS Commands Manual						     DACSCOOKIE(1)

NAME
dacscookie - create DACS credentials and emit as a cookie SYNOPSIS
dacscookie [dacsoptions[1]] [-create] [-i ident] [-user user] [-ip ipaddr] [-role role_str] [-expires date] [-ua str] dacscookie [dacsoptions[1]] -decrypt [-concise] DESCRIPTION
This program is part of the DACS suite. The dacscookie utility constructs DACS credentials that represent a single DACS identity and emits them as the NAME=VALUE element of a HTTP cookie[2] (RFC 2109[3], RFC 2965[4]) that may be used by DACS. It can also decode and display these cookies, provided the same encryption keys used to create the cookies are available. The program is useful for testing purposes, or by programs that perform authentication (e.g., by calling dacsauth(1)[5]) and need to return credentials. It may also be used to generate an identity "offline"; the resulting credentials could be used by applications other than standard Web browsers, or be distributed via any secure channel (e.g., encrypted email) for use by the recipient. Configured or derived defaults are used if optional identity information is not provided. Security Only the DACS administrator should be able to successfully run this program. Because DACS keys and configuration files must be limited to the administrator, this will normally be the case, but a careful administrator will set file permissions to deny access to all other users, or even delete the binary. Similarly, access to cookies generated by this program must be carefully controlled. Any jurisdiction within the same federation in which the credentials were created will be able to directly decrypt the credentials. OPTIONS
dacscookie recognizes these options for cookie creation: -create Create the specified credentials and emit them to the standard output as the NAME=VALUE component of an HTTP cookie. This is the default. -expires date Set the expiry date for the cookie. If date begins with '+' and is followed by a digit string, the expiry date will be that number of seconds relative to the current time. Otherwise, the date is expected to be in one of the recognized formats (see concise syntax[6]). If not provided, the configured default value, AUTH_CREDENTIALS_DEFAULT_LIFETIME_SECS[7], will be used. -i ident The identity (ident) is given in the concise syntax[6]. Note that any elements that are explicitly given will override those that appear in ident. -ip ipaddr Use ipaddr as the user's IP address (in numerical dot notation). If not provided, this element will be obtained from any -i flag or else omitted from the credentials. -role role_str Use role_str as the user's role string, which must be syntactically correct. If not provided, this element will be obtained from any -i flag or else omitted from the credentials. -ua str Use str as the user agent string associated with the credentials. If no string is specified, the credentials cannot be verified against a user agent string. See dacs.conf(5)[8]. -user name Use name, a syntactically correct username, within the applicable jurisdiction. If not provided, this element must be specified using the -i flag. dacscookie recognizes these options for cookie decryption: -decrypt Instead of creating credentials, read a cookie from the standard input and print its decoded contents to the standard output. If the input is invalid in any way, a message is displayed. -concise With the -decrypt flag, only print the identity in the concise user syntax[6]. EXAMPLES
The following will generate an identity and store it in a file: % dacscookie -u j1.example.com -user bobo > cookie.out % chmod 0600 cookie.out The following will display various elements of the credentials to stdout: % dacscookie -u j1.example.com -decrypt < cookie.out % rm cookie.out DIAGNOSTICS
The program exits 0 if everything was fine, 1 if an error occurred. SEE ALSO
dacs_auth_agent(8)[9], dacs_auth_transfer(8)[10], dacs_authenticate(8)[11], dacsauth(1)[5], dacscred(1)[12], dacs_current_credentials(8)[13]. AUTHOR
Distributed Systems Software (www.dss.ca[14]) COPYING
Copyright2003-2012 Distributed Systems Software. See the LICENSE[15] file that accompanies the distribution for licensing information. NOTES
1. dacsoptions http://dacs.dss.ca/man/dacs.1.html#dacsoptions 2. HTTP cookie http://web.archive.org/web/20070805052634/http://wp.netscape.com/newsref/std/cookie_spec.html 3. RFC 2109 http://www.rfc-editor.org/rfc/rfc2109.txt 4. RFC 2965 http://www.rfc-editor.org/rfc/rfc2965.txt 5. dacsauth(1) http://dacs.dss.ca/man/dacsauth.1.html 6. concise syntax http://dacs.dss.ca/man/dacs.1.html#concise_user_syntax 7. AUTH_CREDENTIALS_DEFAULT_LIFETIME_SECS http://dacs.dss.ca/man/dacs.conf.5.html#AUTH_CREDENTIALS_DEFAULT_LIFETIME_SECS 8. dacs.conf(5) http://dacs.dss.ca/man/dacs.conf.5.html#VERIFY_UA 9. dacs_auth_agent(8) http://dacs.dss.ca/man/dacs_auth_agent.8.html 10. dacs_auth_transfer(8) http://dacs.dss.ca/man/dacs_auth_transfer.8.html 11. dacs_authenticate(8) http://dacs.dss.ca/man/dacs_authenticate.8.html 12. dacscred(1) http://dacs.dss.ca/man/dacscred.1.html 13. dacs_current_credentials(8) http://dacs.dss.ca/man/dacs_current_credentials.8.html 14. www.dss.ca http://www.dss.ca 15. LICENSE http://dacs.dss.ca/man/../misc/LICENSE DACS 1.4.27b 10/22/2012 DACSCOOKIE(1)
All times are GMT -4. The time now is 05:14 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy