sfeed

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

commit 7c6893ff05476410b369ee6a967a65e7b3ee754f
parent 1fe61cfcf216d459173724805f37ad6e4eff4920
Author: Hiltjo Posthuma <hiltjo@codemadness.org>
Date:   Mon,  5 Jan 2015 00:09:38 +0100

sfeed_update: wrap long line

Diffstat:
Msfeed_update | 3++-
1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/sfeed_update b/sfeed_update @@ -101,7 +101,8 @@ loadconfig "$1" TMPDIR=$(mktemp -d "/tmp/sfeed_XXXXXX") # get date of last modified feedfile in format: # YYYYmmdd HH:MM:SS [+-][0-9]* -lastupdated=$(stat -c "%y" "$sfeedfile" 2> /dev/null | cut -c 1-4,6-7,9-10,11-19,30-) +lastupdated=$(stat -c "%y" "$sfeedfile" 2> /dev/null | \ + cut -c 1-4,6-7,9-10,11-19,30-) # kill whole current process group on ^C. isrunning="1" # SIGTERM: signal to terminate parent.