Skip to content

Instantly share code, notes, and snippets.

@andreydung
Last active February 15, 2017 01:20
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 andreydung/c61d77be5604ce76632553f06f4d8fb2 to your computer and use it in GitHub Desktop.
Save andreydung/c61d77be5604ce76632553f06f4d8fb2 to your computer and use it in GitHub Desktop.
Commands
% OSX
cat /dev/cu.usbmodem1421 | gawk '{x="'"`gdate +%s%3N`"'"; printf "%s,%s\n",x,$0 }' | tee data.csv
% Ubuntu
cat /dev/cu.usbmodem1421 | awk '{x="'"`date +%s%3N`"'"; printf "%s,%s\n",x,$0 }' | tee data.csv
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment