with Perl (if your date isn't as facny as GNU's)
#!/usr/bin/perl
($d,$m,$y) = (localtime(time()-86400))[3,4,5];
$y += 1900;
print "$d/$m/$y\n";
or
perl -e '($d,$m,$y)=(localtime(time()-86400))[3,4,5];$y+=1900;print "$d/$m/$y\n"'
for brevity,
Fergal
On Tue, Oct 23, 2001 at 12:25:30PM -0400, Baldwin_James at emc.com wrote:
> All,
>> Without going OTT, can anyone think of a way of echoing out a $yesterday
> variable (i.e. yesterdays date! :P )?
> Has the date binary got some fancy footwork to do this already ? Running
> *cough* Solaris 2.6 :(
>> The only way I can think of is this nasty piece of self-made artwork
>>> #!/bin/ksh
>> set -A DAYS Sat Sun Mon Tue Wed Thu Fri Sat
> set -A MONTHS Dec Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec
> YESTERDAY=$((`date +%d` -1))
> MONTH=`date +%m`
> YEAR=`date +%Y`
> NDAY=`date +%u`
> WEEKDAY=${DAYS[`date +%u`]}
> if [ $YESTERDAY -eq "0" ]
> then
> MONTH=$((MONTH-1))
> if [ $MONTH -eq "0" ]
> then
> MONTH=12
> YEAR=$((YEAR-1))
> fi
> set `cal $MONTH $YEAR`
> shift $(($# - 1))
> YESTERDAY=$1
> fi
> TMONTH=${MONTHS[MONTH]}
>>> Cheers,
> J.
>> --
> Irish Linux Users' Group: ilug at linux.ie>http://www.linux.ie/mailman/listinfo/ilug for (un)subscription information.
> List maintainer: listmaster at linux.ie
--
Maintained by the ILUG website team. The aim of Linux.ie is to
support and help commercial and private users of Linux in Ireland. You can
display ILUG news in your own webpages, read backend
information to find out how. Networking services kindly provided by HEAnet, server kindly donated by
Dell. Linux is a trademark of Linus Torvalds,
used with permission. No penguins were harmed in the production or maintenance
of this highly praised website. Looking for the
Indian Linux Users' Group? Try here. If you've read all this and aren't a lawyer: you should be!