Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 14 Aug 2003 17:30:16 +0100
From:      Jez Hancock <jez.hancock@munk.nu>
To:        freebsd-questions@freebsd.org
Subject:   Re: Using bc in bash script
Message-ID:  <20030814163016.GA76179@users.munk.nu>
In-Reply-To: <001a01c3627e$487d7a10$04fea8c0@moe>
References:  <20030814154920.GA74582@users.munk.nu> <001a01c3627e$487d7a10$04fea8c0@moe>

next in thread | previous in thread | raw e-mail | index | archive | help
On Thu, Aug 14, 2003 at 11:08:21AM -0500, Charles Howse wrote:
> > On Thu, Aug 14, 2003 at 10:46:45AM -0500, Charles Howse wrote:
> > > Hello List,
> > > 
> > > I've migrated from Redhat Linux 9 to FreeBSD 4.8-RELEASE, 
> > character mode
> > > - no gui.
> > > 
> > > I'm trying to calculate the number of seconds between 
> > $start_time and
> > > $end_time in a bash script.
> > > 
> > > Start_time=`date +%s` # Seconds past midnight at start of script
> > > [ do lots of stuff ]
> > > End_time=`date +%s`   # Seconds past midnight at end of script
> > > 
> > > Then I want to: et=`bc $end_time - $start_time` to get the number of
> > > seconds or fractions of seconds elapsed.
> > How about:
> > 
> > et=`echo "$end_time - $start_time" | bc`
> 
> Hi Jez, thanks for the reply!
> 
> As my daughter would say, "Well, DUHHHHHHH!"
:)

> That worked fine, it reported 0 seconds.
Hah, computers are just too damn fast :)

> Can I refine it to give me something like: .784 seconds?
You could use 'time' perhaps to time whatever it is you're timing - I'm
not overly familiar with the time(1) command though, best to check the man
page :)

-- 
Jez

http://www.munk.nu/



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20030814163016.GA76179>