How-To: Export RSS feeds from Mac Mail
May.05, 2008 in
How To
To export all your RSS feeds from Mac Mail as a list, open up terminal and enter the following on a single line:
IFS=$’\n’;for i in $(find ~/Library/Mail/RSS/ -name “Info.plist”);do grep “<string>http://” $i | sed “s/.*\(http[^<]*\).*/\1/”;done
Thanks to macosxhints.com for this one!

Leave a Reply