sfeed

simple feed reader - forked from git.codemadness.org/sfeed
git clone git://src.gearsix.net/sfeed
Log | Files | Refs | Atom | README | LICENSE

sfeedrc.example (917B)


      1 #sfeedpath="$HOME/.sfeed/feeds"
      2 
      3 # list of feeds to fetch:
      4 feeds() {
      5 	# feed <name> <feedurl> [basesiteurl] [encoding]
      6 	feed "codemadness" "https://www.codemadness.org/atom_content.xml"
      7 	feed "explosm" "http://feeds.feedburner.com/Explosm"
      8 	feed "golang github releases" "https://github.com/golang/go/releases.atom"
      9 	feed "linux kernel" "https://www.kernel.org/feeds/kdist.xml" "https://www.kernel.org"
     10 	feed "reddit openbsd" "https://old.reddit.com/r/openbsd/.rss"
     11 	feed "slashdot" "http://rss.slashdot.org/Slashdot/slashdot" "http://slashdot.org"
     12 	feed "tweakers" "http://feeds.feedburner.com/tweakers/mixed" "http://tweakers.net" "iso-8859-1"
     13 	# get youtube Atom feed: curl -s -L 'https://www.youtube.com/user/gocoding/videos' | sfeed_web | cut -f 1
     14 	feed "youtube golang" "https://www.youtube.com/feeds/videos.xml?channel_id=UCO3LEtymiLrgvpb59cNsb8A"
     15 	feed "xkcd" "https://xkcd.com/atom.xml" "https://xkcd.com"
     16 }