从 Mail.app 检索 RSS Feed URL?

从 Mail.app 检索 RSS Feed URL?

我已将 RSS 源添加到 Apple 的 Mail.app。如何检索该源的 URL?

答案1

在 /Applications/Utilities 下的终端应用程序中,运行:

for i in ~/Library/Mail/RSS/*/Info.plist; do defaults read "${i%.plist}" RSSFeedURLString; done

来源:http://www.macosxhints.com/article.php?story=20080319094830396

相关内容