Export Reading list from Safari

  1. open ~/Library/Safari

  2. Copy the Safari bookmarks file to your desktop.

  3. Then run the following command to get the list of links

plutil -convert xml1 -o - Bookmarks.plist | grep -E  -o '<string>http[s]{0,1}://.*</string>' | grep -v icloud | sed -E 's/<\/{0,1}string>//g'

References

https://apple.stackexchange.com/questions/24864/is-it-possible-to-export-safaris-reading-list-on-safari-5-1#62431