Last active
October 27, 2018 12:46
-
-
Save davidmigloz/d9082fb347822214001b8aa24eac5348 to your computer and use it in GitHub Desktop.
Bash one-liner to print all safary history with exact times
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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