prefix with expiry time

This allows us to feed output to a program like SORT(1) and have
a useful sorting.
This commit is contained in:
Stephen McQuay 2018-04-09 15:38:26 -07:00
parent b29178372b
commit 6fac434ef1
Signed by: sm
GPG Key ID: 4E4B72F479BA3CE5
1 changed files with 1 additions and 1 deletions

View File

@ -42,7 +42,7 @@ func main() {
log.Printf("get date: %v", err)
return
}
fmt.Printf("%-24v %v\n", res.host, res.exp)
fmt.Printf("%v %v\n", res.exp, res.host)
}(w)
}
wg.Wait()