Skip to content

Instantly share code, notes, and snippets.

@davidmigloz
Last active October 27, 2018 12:46
Show Gist options
  • Save davidmigloz/d9082fb347822214001b8aa24eac5348 to your computer and use it in GitHub Desktop.
Save davidmigloz/d9082fb347822214001b8aa24eac5348 to your computer and use it in GitHub Desktop.
Bash one-liner to print all safary history with exact times
# https://apple.stackexchange.com/a/313670/248730
sqlite3 ~/Library/Safari/History.db 'select datetime(visit_time+978307200, "unixepoch", "localtime"),title from history_visits ORDER BY visit_time desc LIMIT 30;'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment