From 1c1bccdc68f7b36a83615b58a3d2743286b0d465 Mon Sep 17 00:00:00 2001 From: Xerbo Date: Wed, 24 Jul 2019 12:08:18 +0100 Subject: [PATCH] Added -r flag to turn off renaming --- furaffinity-dl | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/furaffinity-dl b/furaffinity-dl index da3fe13..4ee8c80 100755 --- a/furaffinity-dl +++ b/furaffinity-dl @@ -26,6 +26,8 @@ Arguments: -c If you need to download restricted content you can provide a path to a (C)ookie file -p (P)lain file without any additional metadata + -r Don't (R)ename files, just give them the same + filename as on facdn Examples: $0 gallery/mylafox @@ -48,12 +50,14 @@ cleanup() { outdir="." prefix="https:" metadata=true -while getopts 'o:c:iph' flag; do +rename=true +while getopts 'o:c:iphr' flag; do case "${flag}" in o) outdir=${OPTARG};; c) cookiefile=${OPTARG};; i) prefix="http:";; p) metadata=false;; + r) rename=false;; h) help;; *) help;; esac @@ -130,7 +134,11 @@ https://github.com/Xerbo/furaffinity-dl/issues" >&2 file="$outdir/$title.$file_type" # Download the image - wget "$image_url" -O "$file" + if [ $rename = true ]; then + wget "$image_url" -O "$file" + else + wget "$image_url" -P "$outdir" + fi # Add metadata if [ $file_type == "mp3" ] || [ $file_type == "wav" ] || [ $file_type == "wmv" ] || [ $file_type == "ogg" ] || [ $file_type == "flac" ]; then