Skip to content

Instantly share code, notes, and snippets.

@jallspaw
Created October 17, 2018 16:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jallspaw/985bc1b377ec7ef1a0475617bea63fe6 to your computer and use it in GitHub Desktop.
Save jallspaw/985bc1b377ec7ef1a0475617bea63fe6 to your computer and use it in GitHub Desktop.
#!/bin/sh
FILE=$1
jq -r '.[] | [ .type, .subtype, .ts, .thread_ts, .name, .text ] | @tsv' $FILE | awk -F\t '{print $3"\t"$5"\t"$6}' | dconv -S -i "%s.%N" -f "%Y-%m-%d %H:%M:%S" > $FILE-import
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment