Skip to content

Instantly share code, notes, and snippets.

@jenikm
Created April 25, 2019 21:20
Show Gist options
  • Save jenikm/a41a3ac3abe04c972d50c46f046caee3 to your computer and use it in GitHub Desktop.
Save jenikm/a41a3ac3abe04c972d50c46f046caee3 to your computer and use it in GitHub Desktop.
Parse 2step verification code
#!/usr/bin/env bash
sqlite3 ~/Library/Messages/chat.db "SELECT text FROM message WHERE text LIKE '%code is%' ORDER BY date DESC LIMIT 1;" |
sed -E 's/[^0-9]//g' |
tr -d '\n' |
pbcopy
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment