mirror of
https://github.com/Radiquum/furaffinity-dl.git
synced 2025-04-06 00:04:38 +00:00
Added to help that the duplication count is for consecutive duplicates
This commit is contained in:
parent
47c4e44e39
commit
c487dac0b4
1 changed files with 4 additions and 3 deletions
|
@ -29,8 +29,8 @@ Arguments:
|
||||||
filename as on facdn
|
filename as on facdn
|
||||||
-n (N)umber of images to download, starting from
|
-n (N)umber of images to download, starting from
|
||||||
the most recent submission
|
the most recent submission
|
||||||
-d Number of (D)uplicate files to register before
|
-d Number of consecutive (D)uplicate files to register
|
||||||
exiting
|
before exiting
|
||||||
-w Over(Write) files if they already exist
|
-w Over(Write) files if they already exist
|
||||||
-s (S)eperate metadata files, to make sure all
|
-s (S)eperate metadata files, to make sure all
|
||||||
metadata is downloaded regardless of file
|
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"
|
echo "File already exists, skipping. Use -w to skip this check"
|
||||||
# increment the duplicate counter
|
# increment the duplicate counter
|
||||||
duplicate_count="$((duplicate_count + 1))"
|
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
|
if [ "$maxduplicatecount" -ne "0" ] && [ "$duplicate_count" -ge "$maxduplicatecount" ]; then
|
||||||
echo "Reached set maximum of consecutive duplicate files"
|
echo "Reached set maximum of consecutive duplicate files"
|
||||||
exit 0
|
exit 0
|
||||||
|
|
Loading…
Add table
Reference in a new issue