1
0
Fork 0

Added hour support to gentasktime

master
Mike Gerwitz 2013-08-30 09:03:29 -04:00
parent cfee714c81
commit 6aef6ccdf4
1 changed files with 4 additions and 1 deletions

View File

@ -25,7 +25,10 @@ domake \
last=""
}
/days ago/{
/days ago|^(1[5-9]|2[0-9]) hours ago/{
if ( $0 ~ /hours/ ) {
$1 = 1
}
if ( $1 == last ) next;
if ( $1 < last ) nextfile;
last = $1;