sfeed

Simple RSS and Atom feed parser
git clone https://git.sinitax.com/codemadness/sfeed
Log | Files | Refs | README | LICENSE | Upstream | sfeed.txt

commit 0391bae406896b068c9e82b76aa6c26c7928efc7
parent e1676198f01a1ba713e1bc9705db8df80cc47cfa
Author: Hiltjo Posthuma <hiltjo@codemadness.org>
Date:   Thu, 19 May 2022 21:32:42 +0200

README: make sure sfeed_update errors don't write to stderr

It would mess up the output since the progress bar writes to stderr aswell.

Diffstat:
MREADME | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/README b/README @@ -1014,7 +1014,7 @@ Alternative: pv -l -s totallines config="${1:-$HOME/.sfeed/sfeedrc}" total=$(countfeeds "${config}") - sfeed_update "${config}" | progress "${total}" + sfeed_update "${config}" 2>&1 | progress "${total}" - - -