commit 53c1e3a77bcea4b619e7d86c48d98ee151fe445b
parent 39cda256dae815015400fc32d0f288dd55977fb5
Author: Hiltjo Posthuma <hiltjo@codemadness.org>
Date: Sun, 18 Feb 2018 14:55:19 +0100
sfeed_update: revert previous commit, its not an issue
Diffstat:
1 file changed, 2 insertions(+), 4 deletions(-)
diff --git a/sfeed_update b/sfeed_update
@@ -31,13 +31,11 @@ loadconfig() {
# merge raw files.
# merge(oldfile, newfile)
merge() {
- oldfile="$(printf '%s' "$1" | tr ' ' ' ')"
- newfile="$(printf '%s' "$2" | tr ' ' ' ')"
# unique check by id, title, link.
# print only new entries in newfile.
# order new items by timestamp (asc).
- (sed 's@^@O @' "${oldfile}"
- sed 's@^@N @' "${newfile}") | \
+ (sed 's@^@O @' "$1"
+ sed 's@^@N @' "$2") | \
LC_ALL=C awk '!x[$7 " " $3 " " $4]++ && $1 == "N"' 2>/dev/null | \
cut -f 2- | \
sort -t ' ' -k1n,1