in reply to 3 days previous Date

Try with the following example code
use strict; use warnings; my $current = `date`; + print "Current date and time is $current"; print `date -d "1 day ago"`; print `date -d "1 week ago"`; print `date -d "1 month ago"`; print `date -d "1 year ago"`;

Replies are listed 'Best First'.
Re^2: 3 days previous Date
by Anonymous Monk on Jun 15, 2010 at 14:40 UTC

    Running a shell so many times sounds expensive and not portable.