From a90868218533ef845c9b3d14461a6363a65eba5e Mon Sep 17 00:00:00 2001 From: louwrentius Date: Fri, 23 Sep 2011 21:00:42 +0000 Subject: [PATCH] fixed issue with processing processed items at the start --- ppss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ppss b/ppss index 2224684..e525b4c 100755 --- a/ppss +++ b/ppss @@ -1852,7 +1852,7 @@ remove_processed_items_from_input_file () { cat "$LISTOFITEMS" | sort > "$LIST_SORTED" cat "$LIST_OF_PROCESSED_ITEMS" | sort > "$PROCESSED_SORTED" comm -3 $LIST_SORTED $PROCESSED_SORTED > $OUT_FILE - mv "$TMP_FILE" "$LISTOFITEMS" + mv "$OUT_FILE" "$LISTOFITEMS" } get_all_items () {