vote up 1 vote down star

I need to do date arithmetic in Unix shell scripts that I use to control the execution of third party programs.

I'm using a function to increment a day and another to decrement:

IncrementaDia(){
echo $1 | awk '
BEGIN {
diasDelMes[1] = 31
diasDelMes[2] = 28
diasDelMes[3] = 31
diasDelMes[4] = 30
diasDelMes[5] = 31
diasDelMes[6] = 30
diasDelMes[7] = 31
diasDelMes[8] = 31
diasDelMes[9] = 30
diasDelMes[10] = 31
diasDelMes[11] = 30
diasDelMes[12] = 31
}
{
anio=substr($1,1,4)
mes=substr($1,5,2)
dia=substr($1,7,2)

if((anio % 4 == 0 && anio % 100 != 0) || anio % 400 == 0)
{
diasDelMes[2] = 29;
}

if( dia == diasDelMes[int(mes)] ) {
if( int(mes) == 12 ) {
anio = anio + 1
mes = 1
dia = 1
} else {
mes = mes + 1
dia = 1
}
} else {
dia = dia + 1
}
}
END {
printf("%04d%02d%02d", anio, mes, dia)
}
'
}

if [ $# -eq 1 ]; then
tomorrow=$1
else
today=$(date +"%Y%m%d")
tomorrow=$(IncrementaDia $hoy)
fi

but now I need to do more complex arithmetic.

What it's the best and more compatible way to do this?

flag

25% accept rate

13 Answers

vote up 6 vote down

Like so:

date --date='1 days ago' '+%a'

And similar phrases.

link|flag
vote up 2 vote down

date --date='1 days ago' '+%a'

It's not a very compatible solution. It will work only in Linux. At least, it didn't worked in Aix and Solaris.

It works in RHEL:

date --date='1 days ago' '+%Y%m%d'
20080807
link|flag
vote up 3 vote down

Why not write your scripts using a language like perl or python instead which more naturally supports complex date processing? Sure you can do it all in bash, but I think you will also get more consistency across platforms using python for example, so long as you can ensure that perl or python is installed.

I should add that it is quite easy to wire in python and perl scripts into a containing shell script.

link|flag
vote up 0 vote down

Justin: I don't have PERL in those machines (don't ask me why) but, if nobody can help me, I'll write a C program and I'll compile it for every server.

link|flag
vote up 2 vote down

Looking into it further, I think you can simply use date. I've tried the following on OpenBSD: I took the date of Feb. 29th 2008 and a random hour (in the form of 080229301535) and added +1 to the day part, like so:

$ date -j 0802301535
Sat Mar 1 15:35:00 EST 2008

As you can see, date formatted the time correctly...

HTH

link|flag
vote up 0 vote down

Abyx: that solution is good but surely you can note it's not as good as can be. It seems nobody thought of tinkering with dates when constructing Unix.

link|flag
Have you seen the other answer I posted? – abyx Nov 5 at 14:10
vote up 0 vote down

If the GNU version of date works for you, why don't you grab the source and compile it on AIX and Solaris?

http://www.gnu.org/software/coreutils/

In any case, the source ought to help you get the date arithmetic correct if you are going to write you own code.

As an aside, comments like "that solution is good but surely you can note it's not as good as can be. It seems nobody thought of tinkering with dates when constructing Unix." don't really get us anywhere. I found each one of the suggestions so far to be very useful and on target.

link|flag
vote up 2 vote down

To do arithmetic with dates on UNIX you get the date as the number seconds since the UNIX epoch, do some calculation, then convert back to your printable date format. The date command should be able to both give you the seconds since the epoch and convert from that number back to a printable date. My local date command does this,

% date -n
1219371462
% date 1219371462
Thu Aug 21 22:17:42 EDT 2008
%

See your local date(1) man page. To increment a day add 86400 seconds.

link|flag
vote up 1 vote down

I have bumped into this a couple of times. My thoughts are:

  1. Date arithmetic is always a pain
  2. It is a bit easier when using EPOCH date format
  3. date on Linux converts to EPOCH, but not on Solaris
  4. For a portable solution, you need to do one of the following:
    1. Install gnu date on solaris (already mentioned, needs human interaction to complete)
    2. Use perl for the date part (most unix installs include perl, so I would generally assume that this action does not require additional work).

A sample script (checks for the age of certain user files to see if the account can be deleted):

#!/usr/local/bin/perl

$today = time();

$user = $ARGV[0];

$command="awk -F: '/$user/ {print \$6}' /etc/passwd";

chomp ($user_dir = `$command`);

if ( -f "$user_dir/.sh_history" ) {
    @file_dates   = stat("$user_dir/.sh_history");
    $sh_file_date = $file_dates[8];
} else {
    $sh_file_date = 0;
}
if ( -f "$user_dir/.bash_history" ) {
    @file_dates     = stat("$user_dir/.bash_history");
    $bash_file_date = $file_dates[8];
} else {
    $bash_file_date = 0;
}
if ( $sh_file_date > $bash_file_date ) {
    $file_date = $sh_file_date;
} else {
    $file_date = $bash_file_date;
}
$difference = $today - $file_date;

if ( $difference >= 3888000 ) {
    print "User needs to be disabled, 45 days old or older!\n";
    exit (1);
} else {
    print "OK\n";
    exit (0);
}
link|flag
vote up 2 vote down

If you want to continue with awk, then the mktime and strftime functions are useful:


BEGIN { dateinit }
      { newdate=daysadd(OldDate,DaysToAdd)}

 # daynum: convert DD-MON-YYYY to day count
 #-----------------------------------------
function daynum(date,  d,m,y,i,n)
{
     y=substr(date,8,4)
     m=gmonths[toupper(substr(date,4,3))]
     d=substr(date,1,2)
     return mktime(y" "m" "d" 12 00 00")
}

 #numday: convert day count to DD-MON-YYYY
 #-------------------------------------------
function numday(n,  y,m,d)
{
    m=toupper(substr(strftime("%B",n),1,3))
    return strftime("%d-"m"-%Y",n)
}

 # daysadd: add (or subtract) days from date (DD-MON-YYYY), return new date (DD-MON-YYYY)
 #------------------------------------------
function daysadd(date, days)
{
    return numday(daynum(date)+(days*86400))
}

 #init variables for date calcs
 #-----------------------------------------
function dateinit(   x,y,z)
{
     # Stuff for date calcs
     split("JAN:1,FEB:2,MAR:3,APR:4,MAY:5,JUN:6,JUL:7,AUG:8,SEP:9,OCT:10,NOV:11,DEC:12", z)
     for (x in z)
     {
        split(z[x],y,":")
        gmonths[y[1]]=y[2]
     }
}
link|flag
but, as I've just discovered, mktime is gawk, and not there on solaris awk/nawk :( – Joe Watkins Feb 20 at 16:26
vote up 0 vote down

@caerwyn Date arithmetics by adding seconds will potentially fail on leap seconds

link|flag
leap seconds need to get abolished. – dotjoe May 3 at 14:06
vote up 1 vote down

The book "Shell Script Recipes: A Problem Solution Approach" (ISBN: 978-1-59059-471-1) by Chris F.A. Johnson has a date functions library that might be helpful. The source code is available at http://apress.com/book/downloadfile/2146 (the date functions are in Chapter08/data-funcs-sh within the tar file).

link|flag
vote up 0 vote down

I concur with Justin and recommend using a better tool/language for your script. I would probably go with perl as it is installed on most Unix systems out of the box. Python, while more modern, requires you to install it first, which can be a pain or even politically impossible.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.