mirror of
https://github.com/Radiquum/furaffinity-dl.git
synced 2025-04-05 07:44:37 +00:00
Address #32 only allow alphanumeric characters in filenames
This commit is contained in:
parent
efe0a1858d
commit
4f6cfb1631
1 changed files with 2 additions and 4 deletions
|
@ -139,9 +139,7 @@ https://github.com/Xerbo/furaffinity-dl/issues" >&2
|
|||
|
||||
# Get metadata
|
||||
description="$(grep 'og:description" content="' "$tempfile" | cut -d '"' -f 4)"
|
||||
title="$(grep 'og:title" content="' "$tempfile" | cut -d '"' -f 4)"
|
||||
title="${title%" by"*}" # Remove the " by Artist" bit
|
||||
title="$(echo $title | tr -d "/")"
|
||||
title="$(grep -Eo '<h2><p>.*</p></h2>' "$tempfile" | awk -F "<p>" '{print $2}' | awk -F "</p>" '{print $1}')"
|
||||
file_type="${image_url##*.}"
|
||||
file_name="$(echo "$image_url" | cut -d "/" -f 7)"
|
||||
if [[ "$file_name" =~ ^[0-9]{0,12}$ ]]; then
|
||||
|
@ -150,7 +148,7 @@ https://github.com/Xerbo/furaffinity-dl/issues" >&2
|
|||
|
||||
# Choose the output path
|
||||
if [ $rename = true ]; then
|
||||
file="$outdir/$title.$file_type"
|
||||
file="$outdir/$(echo "$title" | sed -e 's/[^A-Za-z0-9._-]/ /g').$file_type"
|
||||
else
|
||||
file="$outdir/$file_name"
|
||||
fi
|
||||
|
|
Loading…
Add table
Reference in a new issue