From 862e5898adfd283f2ebd030bdc95f3bf3ab94dbc Mon Sep 17 00:00:00 2001 From: Michael Grote Date: Tue, 7 May 2024 02:22:09 +0200 Subject: [PATCH] d --- filter.sh | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/filter.sh b/filter.sh index 4fab04d..93ce9b0 100755 --- a/filter.sh +++ b/filter.sh @@ -156,7 +156,6 @@ function filter_entries { echo "[INFO] Filtering entries..." # fuer jede Zeile in $MF_FILTERLIST echo "$MF_FILTERLIST" | while read -r line; do - echo $line #d if [[ $MF_DEBUG -eq 1 ]]; then echo "[DEBUG] set search values" fi @@ -193,7 +192,7 @@ function mark_as_read { # der wert muss escaped werden, aber NICHT die variable die uebergeben wird if [[ $MF_DEBUG -eq 1 ]]; then echo "[DEBUG] mark entries as read" - echo "[DEBUG] marked entry ids:" + echo "[DEBUG] marked entry ids: $marked_entries" # https://unix.stackexchange.com/questions/353321/remove-all-duplicate-word-from-string-using-shell-script # entfernt doppelte eintraege innerhalb einer zeile echo "$marked_entries" | xargs -n1 | sort -u | xargs | sed -r 's/\s/\, /g'