Export Reading list from Safari
-
open ~/Library/Safari
-
Copy the Safari bookmarks file to your desktop.
-
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