[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Duration between two time stamps
From: |
hancooper |
Subject: |
Duration between two time stamps |
Date: |
Thu, 19 Aug 2021 15:26:14 +0000 |
‐‐‐‐‐‐‐ Original Message ‐‐‐‐‐‐‐
On Thursday, August 19, 2021 2:47 PM, Chet Ramey <chet.ramey@case.edu> wrote:
> On 8/19/21 1:10 AM, Tapani Tarvainen wrote:
>
> > Incidentally, why does ${var:offset} with a negative offset result in
> > an empty string when the variable is shorter than the offset? E.g.,
> > x=abc
> > echo ${x: -6}
> > I find that counterintuitive,
>
> Why? It's an out-of-bounds error.
>
> > and it'd actually be useful to
> > be able to get "at most N characters from the end".
>
> If you want that, you can use ${#x} to get the length and work from there.
Why does the following EPOCHREALTIME computation not work ?
ta=$( $EPOCHREALTIME | tr ',' '.' )
grep ...
tb=$( $EPOCHREALTIME | tr ',' '.' )
dt=$( ${tb}-${ta} | bc )
printf '%s\n' "ta:$ta | tb:$tb | dt: $dt"
Thank you
- Duration between two time stamps, (continued)
- Duration between two time stamps, hancooper, 2021/08/19
- Re: Duration between two time stamps, Koichi Murase, 2021/08/19
- Duration between two time stamps, hancooper, 2021/08/19
- Re: Duration between two time stamps, Alex fxmbsw7 Ratchev, 2021/08/19
- Re: Duration between two time stamps, Greg Wooledge, 2021/08/19
- Duration between two time stamps, hancooper, 2021/08/19
- Re: Duration between two time stamps, Koichi Murase, 2021/08/19
- Re: Duration between two time stamps, Koichi Murase, 2021/08/19
- Re: Duration between two time stamps, Tapani Tarvainen, 2021/08/20
- Re: Duration between two time stamps, Chet Ramey, 2021/08/19
- Duration between two time stamps,
hancooper <=
- Re: Duration between two time stamps, ikhxcsz7y xmbott, 2021/08/19
- Re: Duration between two time stamps, Emanuele Torre, 2021/08/19
- Re: Duration between two time stamps, Tapani Tarvainen, 2021/08/20
Re: Duration between two time stamps, Chris Elvidge, 2021/08/19
Re: Duration between two time stamps, Alex fxmbsw7 Ratchev, 2021/08/19
Re: Duration between two time stamps, Lee, 2021/08/19