From c487dac0b4b33abd27d4beb2c57c88c626c2c273 Mon Sep 17 00:00:00 2001 From: Brandon Moss <32680773+brandonmoss99@users.noreply.github.com> Date: Fri, 13 Nov 2020 15:39:36 +0000 Subject: [PATCH] Added to help that the duplication count is for consecutive duplicates --- furaffinity-dl | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/furaffinity-dl b/furaffinity-dl index 411325f..e80d3ee 100755 --- a/furaffinity-dl +++ b/furaffinity-dl @@ -29,8 +29,8 @@ Arguments: filename as on facdn -n (N)umber of images to download, starting from the most recent submission - -d Number of (D)uplicate files to register before - exiting + -d Number of consecutive (D)uplicate files to register + before exiting -w Over(Write) files if they already exist -s (S)eperate metadata files, to make sure all metadata is downloaded regardless of file @@ -183,7 +183,8 @@ https://github.com/Xerbo/furaffinity-dl/issues" >&2 echo "File already exists, skipping. Use -w to skip this check" # increment the duplicate counter duplicate_count="$((duplicate_count + 1))" - # If we've reached the max number of duplicates, should output message and exit + # If we've reached the max number of consecutive duplicates, + # should output message and exit if [ "$maxduplicatecount" -ne "0" ] && [ "$duplicate_count" -ge "$maxduplicatecount" ]; then echo "Reached set maximum of consecutive duplicate files" exit 0