Introduction
Introduction Statistics Contact Development Disclaimer Help
update_feeds.sh - dotfiles - These are my dotfiles. There are many like it, but…
git clone git://jay.scot/dotfiles
Log
Files
Refs
README
---
update_feeds.sh (515B)
---
1 #!/bin/sh
2 #
3 # wrapper for managing my feed process.
4 # - update new feeds
5 # - generate mbox of feeds
6 # - parse feeds with fdm and push to Maildir format.
7
8 sfeedroot="$HOME/.config/sfeed"
9 feedsdir="${sfeedroot}/feeds"
10 fdmconfig="$HOME/.config/fdm/config"
11
12 if ! test -r "${fdmconfig}"; then
13 echo "fdm configuration file \"${fdmconfig}\" does not exist or …
14 exit 1
15 fi
16
17 sfeed_update "${sfeedroot}/sfeedrc"
18
19 sfeed_mbox "${feedsdir}"/* >~/.config/sfeed/mbox
20 fdm -f "${fdmconfig}" -afeeds fetch
You are viewing proxied material from jay.scot. The copyright of proxied material belongs to its original authors. Any comments or complaints in relation to proxied material should be directed to the original authors of the content concerned. Please see the disclaimer for more details.