summaryrefslogtreecommitdiff
path: root/sfeed_update
diff options
context:
space:
mode:
authorHiltjo Posthuma <hiltjo@codemadness.org>2018-02-18 14:55:19 +0100
committerHiltjo Posthuma <hiltjo@codemadness.org>2018-02-18 14:55:19 +0100
commit53c1e3a77bcea4b619e7d86c48d98ee151fe445b (patch)
tree0db5a168417fd8c5008e2b3d58ecea1a9da91a42 /sfeed_update
parent39cda256dae815015400fc32d0f288dd55977fb5 (diff)
sfeed_update: revert previous commit, its not an issue
Diffstat (limited to 'sfeed_update')
-rwxr-xr-xsfeed_update6
1 files changed, 2 insertions, 4 deletions
diff --git a/sfeed_update b/sfeed_update
index b3aa0da..2977bdc 100755
--- 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