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!

August 17th, 2009 at 12:53 am
This worked well, except I had to replace each single and double quote mark with my own single quote mark at the command line. The command line did not recognize the marks when I paste the command above from FF3, resulting in no output at all.
Thanks!