18

Subject sums it up. Just curious if there is a trick to be able to export your reading list from Safari, any format. Where on the HD is the info stored? bookmarks.plist?

daviesgeek
  • 38,901
  • 52
  • 159
  • 203
user10954
  • 181
  • 1
  • 1
  • 3

5 Answers5

10

You can convert it into XML in a Terminal/command window using:

cd ~/Library/Safari/
cp Bookmarks.plist Bookmarks.plist.xml  
plutil -convert xml1 Bookmarks.plist.xml
alexwlchan
  • 2,657
Ashok
  • 101
2

Yes. The file is called Bookmarks.plist and it is located in ~/Library/Safari/. This houses not only your Reading List bookmarks, but all your bookmarks.

You'll want to look for entries under the key ReadingList. They will look something like this (file viewed in xCode 4):

enter image description here

Unfortunately, the plist file is stored as a binary, and you'll either have to open it using xCode or another tool that can handle binary plist files.

1

You can't export from Safari but you can import from Chrome

Here it is on Google support: https://support.google.com/chrome/answer/96816?hl=en

Alternatively you can open the Terminal application on a Mac (search it in Launchpad if you can't find it) and paste this:

/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'

Hit return and it will list all your Reading List links as text which you can copy and paste elsewhere.

grg
  • 201,078
  • At some point this stopped working as intended. On Mojave it dumps all URLs in the file, not just the reading list. – Fuzzy76 Nov 14 '18 at 16:51
0

If you append ' > ~/Desktop/safariReading.rtf' to the Terminal line from above, you will get a rich-text format file on your Desktop.

This file contains the Safari Reading List & Bookmarks URLs in clickable format. The file could be used for archiving or for creating a project file with notes on what the URLs are for, etc.

/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' > ~/Desktop/safariReading.rtf
  • It’s helpful if you explain what the command actually does - it helps others understand how this works. – Allan Jul 21 '23 at 13:07
-2

In OS X Yosemite, go to ~/Library/Safari/ReadingListArchives

grg
  • 201,078
aaa
  • 1