I have following little script to export my feedlist:
osascript -e "tell application "Vienna" to export subscriptions to "${PWD}/feeds.opml""
... quite tight. So for those of you (like myself) who prefer the "Better 1 line too much but then readable" approach to coding:
tell application "Vienna"
export subscriptions to "feeds.opml"
end tell
(Add the $PWD path in your mind, please ;) )
Now my problems with this:
- I somehow don't get the same feedlist I'd get when exporting using "File -> Export Subscriptions". Somehow everything is just flying around :-?
- The script triggers a dialog box no matter if it succeeds or not. Quite disturbing IMO if you plan to cron that thing ;)
For now, please don't ask me why. Somehow I can't make an anonymous checkout from Sourceforge for at least 2 days now, but the moment I get a snapshot I will try to find my way through all this ObjC code. I'm not really good in ObjC ... actually I have seen it for the first time in my life just a few weeks ago and haven't done anything with it yet. But perhaps I still find a solution for this.
In the meantime: If anyone has some suggestions about this or could recommend another decent news reader (free) that also allows exporting the feedlist as OPML (no matter how), I'm all ear :)
Comments: