summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHiltjo Posthuma <hiltjo@codemadness.org>2019-04-07 22:07:37 +0200
committerHiltjo Posthuma <hiltjo@codemadness.org>2019-04-07 22:07:37 +0200
commit57a90ba638f38fa589119dd6dc6a23482c58bfda (patch)
tree06a9306dbdc28e268bbea66fbb0d26ac534917c6
parent93a39aaac4ba823573b8386cca35570afc8d7b14 (diff)
README: change procmail parallel running, improve some words
make the procmail example safer due to account process limits.
-rw-r--r--README12
1 files changed, 6 insertions, 6 deletions
diff --git a/README b/README
index 124c070..18bb449 100644
--- a/README
+++ b/README
@@ -34,7 +34,8 @@ for sfeed_update:
newsboat -e | sfeed_opml_import > "$HOME/.sfeed/sfeedrc"
-Update feeds, this script merges the new items:
+Update feeds, this script merges the new items, see sfeed_update(1) for more
+information what it can do:
sfeed_update
@@ -195,11 +196,11 @@ Format the feeds files:
# HTML view with the menu as frames, copy style.css for a default style.
mkdir -p somedir && cd somedir && sfeed_frames $HOME/.sfeed/feeds/*
-View in your browser:
+View formatted output in your browser:
$BROWSER "$HOME/.sfeed/feeds.html"
-View in your editor:
+View formatted output in your editor:
$EDITOR "$HOME/.sfeed/feeds.txt"
@@ -421,14 +422,13 @@ procmail_maildirs.sh file:
fi
find "${feedsdir}" -type f -exec printf '%s\n' {} \; | while read -r d; do
- (name=$(basename "${d}")
+ name=$(basename "${d}")
mkdir -p "${maildir}/${name}/cur"
mkdir -p "${maildir}/${name}/new"
mkdir -p "${maildir}/${name}/tmp"
printf 'Mailbox %s\n' "${name}"
- sfeed_mbox "${d}" | formail -s procmail "${procmailconfig}") &
+ sfeed_mbox "${d}" | formail -s procmail "${procmailconfig}"
done
- wait
Procmailrc(5) file: