$duration
From Scriptwiki
Revision as of 08:16, 25 August 2005 by BlackShroud (talk | contribs)
Converts an interval (unit: seconds) into a human-readable format.
$duration(interval, N)
$duration(3660) returns "1hr 1min".
N is an optional parameter which specifies how $duration formats the time:
N | Meaning |
2 | do not include seconds in the result |
3 | $duration uses the H:m:s format |
Examples
Time since a specific date
echo -a $duration($calc($ctime - $ctime(10.02.1986 00:00)))
This command echos how much time has passed since the 10th February 1086.