Sponsored Content
Full Discussion: difference in date
Top Forums Shell Programming and Scripting difference in date Post 302366854 by frans on Friday 30th of October 2009 02:09:15 PM
Old 10-30-2009
a little script

Code:
# Calc the difference between 2 dates in seconds, minutes, hours or days
dateDiff ()    {    # 1: [-s, -m, -h, -d]    2: Date1    3: Date2
    case $1 in
        -s )    SEC=1;    shift    ;;
        -m )    SEC=60;    shift    ;;
        -h )    SEC=3600;    shift    ;;
        -d )    SEC=86400;    shift    ;;
        * )    SEC=86400    ;;
    esac
    DTE1=$(date -u --date "$1" +%s) # Converts date into UNIX timestamp
    DTE2=$(date -u --date "$2" +%s)
    if [ $DTE1 -gt $DTE2 ]
    then    let "DIFFSEC=(DTE1-DTE2)/SEC"
    else    let "DIFFSEC=(DTE2-DTE1)/SEC"
    fi
    echo $DIFFSEC
}


Last edited by frans; 10-30-2009 at 04:11 PM.. Reason: unknown function, replaced with correct syntax
 

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

Dear all, I fancy that I'm pretty competent in ksh, but I have someone on HP-UX wanting me to script up a simple interface to handle user alterations rather than giving them high privileges to run up SAM. This is all fairly straightforward, but I'm stuck on an epoch date issue. When we have... (6 Replies)
Discussion started by: rbatte1
6 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
HFSC(8)                                                                Linux                                                               HFSC(8)

NAME
HFSC - Hierarchical Fair Service Curve's control under linux SYNOPSIS
tc qdisc add ... hfsc [ default CLASSID ] tc class add ... hfsc [ [ rt SC ] [ ls SC ] | [ sc SC ] ] [ ul SC ] rt : realtime service curve ls : linkshare service curve sc : rt+ls service curve ul : upperlimit service curve o at least one of rt, ls or sc must be specified o ul can only be specified with ls or sc SC := [ [ m1 BPS ] d SEC ] m2 BPS m1 : slope of the first segment d : x-coordinate of intersection m2 : slope of the second segment SC := [ [ umax BYTE ] dmax SEC ] rate BPS umax : maximum unit of work dmax : maximum delay rate : rate For description of BYTE, BPS and SEC - please see UNITS section of tc(8). DESCRIPTION (qdisc) HFSC qdisc has only one optional parameter - default. CLASSID specifies the minor part of the default classid, where packets not classified by other means (e.g. u32 filter, CLASSIFY target of iptables) will be enqueued. If default is not specified, unclassified packets will be dropped. DESCRIPTION (class) HFSC class is used to create a class hierarchy for HFSC scheduler. For explanation of the algorithm, and the meaning behind rt, ls, sc and ul service curves - please refer to tc-hfsc(7). As you can see in SYNOPSIS, service curve (SC) can be specified in two ways. Either as maximum delay for certain amount of work, or as a bandwidth assigned for certain amount of time. Obviously, m1 is simply umax/dmax. Both m2 and rate are mandatory. If you omit other parameters, you will specify linear service curve. SEE ALSO
tc(8), tc-hfsc(7), tc-stab(8) Please direct bugreports and patches to: <netdev@vger.kernel.org> AUTHOR
Manpage created by Michal Soltys (soltys@ziu.info) iproute2 31 October 2011 HFSC(8)
All times are GMT -4. The time now is 09:06 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy