From 6cf640f6f102be2f85a02ac13a3f86ccda5c31da Mon Sep 17 00:00:00 2001 From: mewtwo064 Date: Sun, 4 Aug 2019 07:49:34 -0500 Subject: [PATCH] Add option to limit number of submissions downloaded (Starts from most recent submission) --- furaffinity-dl | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) mode change 100755 => 100644 furaffinity-dl diff --git a/furaffinity-dl b/furaffinity-dl old mode 100755 new mode 100644 index 4ee8c80..328dbeb --- a/furaffinity-dl +++ b/furaffinity-dl @@ -51,13 +51,15 @@ outdir="." prefix="https:" metadata=true rename=true -while getopts 'o:c:iphr' flag; do +maxsavefiles="0" +while getopts 'o:c:iphrn:' flag; do case "${flag}" in o) outdir=${OPTARG};; c) cookiefile=${OPTARG};; i) prefix="http:";; p) metadata=false;; r) rename=false;; + n) maxsavefiles=${OPTARG};; h) help;; *) help;; esac @@ -87,6 +89,7 @@ else fi url="https://www.furaffinity.net/${@: -1}" +download_count="0" # Iterate over the gallery pages with thumbnails and links to artwork view pages while true; do @@ -157,6 +160,16 @@ https://github.com/Xerbo/furaffinity-dl/issues" >&2 exiftool "$file" -description="$description" -title="$title" -overwrite_original fi fi + + #If there is a file download limit then keep track of it + if [ "$maxsavefiles" -ne "0" ]; then + download_count=$((download_count + 1)) + + if [ "$download_count" -ge "$maxsavefiles" ]; then + echo "Reached set file download limit." + exit 0 + fi + fi done [ -z "$next_page_url" ] && break