Submit Hint Search The Forums LinksStatsPollsHeadlinesRSS
14,000 hints and counting!


Click here to return to the '10.5: Export Mail.app's RSS feed URLs in Terminal' hint
The following comments are owned by whoever posted them. This site is not responsible for what they say.
10.5: Export Mail.app's RSS feed URLs in Terminal
Authored by: sonetseo on Nov 15, '11 08:42:06AM
In Mac OS X Lion 10.7 the location has changed. Here is the command:

IFS=$'\n';for i in $(find ~/Library/Mail/V2/RSS/ -name "Info.plist");do grep "http://" $i | sed "s/.*\(http[^<]*\).*/\1/" >> ~/Desktop/Mail\ Feeds.txt;done


[ Reply to This | # ]