Tag: date
Convert seconds into HH:MM:SS
Linux, ESXi: # date -d@1234567 -u +%H:%M:%S FreeBSD, OpenBSD # date -r1234567 -u +%H:%M:%S
Squid | print log file with human readable timestamps
perl -pe ‘s/\d+/localtime($&)/e’ /var/log/squid/access.log
Linux, ESXi: # date -d@1234567 -u +%H:%M:%S FreeBSD, OpenBSD # date -r1234567 -u +%H:%M:%S
perl -pe ‘s/\d+/localtime($&)/e’ /var/log/squid/access.log