Added -r flag to turn off renaming

This commit is contained in:
Xerbo 2019-07-24 12:08:18 +01:00
parent 6a6e17959f
commit 1c1bccdc68

View file

@ -26,6 +26,8 @@ Arguments:
-c If you need to download restricted content -c If you need to download restricted content
you can provide a path to a (C)ookie file you can provide a path to a (C)ookie file
-p (P)lain file without any additional metadata -p (P)lain file without any additional metadata
-r Don't (R)ename files, just give them the same
filename as on facdn
Examples: Examples:
$0 gallery/mylafox $0 gallery/mylafox
@ -48,12 +50,14 @@ cleanup() {
outdir="." outdir="."
prefix="https:" prefix="https:"
metadata=true metadata=true
while getopts 'o:c:iph' flag; do rename=true
while getopts 'o:c:iphr' flag; do
case "${flag}" in case "${flag}" in
o) outdir=${OPTARG};; o) outdir=${OPTARG};;
c) cookiefile=${OPTARG};; c) cookiefile=${OPTARG};;
i) prefix="http:";; i) prefix="http:";;
p) metadata=false;; p) metadata=false;;
r) rename=false;;
h) help;; h) help;;
*) help;; *) help;;
esac esac
@ -130,7 +134,11 @@ https://github.com/Xerbo/furaffinity-dl/issues" >&2
file="$outdir/$title.$file_type" file="$outdir/$title.$file_type"
# Download the image # 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 # Add metadata
if [ $file_type == "mp3" ] || [ $file_type == "wav" ] || [ $file_type == "wmv" ] || [ $file_type == "ogg" ] || [ $file_type == "flac" ]; then if [ $file_type == "mp3" ] || [ $file_type == "wav" ] || [ $file_type == "wmv" ] || [ $file_type == "ogg" ] || [ $file_type == "flac" ]; then