Created
August 19, 2016 22:50
-
-
Save Y--/7a268ebb88c64f6453772dc635cb6302 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
gawk 'BEGIN{pdt=0;} { split($0, c, ";");split(c[1], t, ".");gsub(/[-T:]/, " ", t[1]);gsub(/Z/, "", t[2]); ns=sprintf("0.%s", t[2]); dt=(mktime(t[1])+ns)*1000; printf("%s;%.2fms\n", $0, (dt - pdt)); pdt=dt; }' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment