Skip to content

Instantly share code, notes, and snippets.

@Y--
Created August 19, 2016 22:50
Show Gist options
  • Save Y--/7a268ebb88c64f6453772dc635cb6302 to your computer and use it in GitHub Desktop.
Save Y--/7a268ebb88c64f6453772dc635cb6302 to your computer and use it in GitHub Desktop.
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