Skip to content

Instantly share code, notes, and snippets.

@imty42
Forked from andphe/gist:3232343
Last active January 2, 2016 07:32
Show Gist options
  • Save imty42/3fb362dc3851c7580a27 to your computer and use it in GitHub Desktop.
Save imty42/3fb362dc3851c7580a27 to your computer and use it in GitHub Desktop.
Export your links from Safari reading list and open it with your Safari (may make your mac very hot, seriously!)
/usr/bin/plutil -convert xml1 -o - ~/Library/Safari/Bookmarks.plist | grep -E -o '<string>http[s]{0,1}://.*</string>' | grep -v icloud | sed -E 's/<\/{0,1}string>//g'|xargs open -a Safari
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment