fix: uses correct title for directory name

This commit is contained in:
2025-04-23 20:48:01 -05:00
parent d8e8c7f0f0
commit 35718958ee
8 changed files with 14 additions and 5 deletions

View File

@@ -1,2 +1,2 @@
# $1 = movies/tvshows/etc, $2 = title of media, $3 = URL of download
cd /dl/${1} && if [ ! -d "${2}" ]; then mkdir "${2}"; fi && cd "${2}" && wget "${3}"
cd /var/download/${1} && if [ ! -d "${2}" ]; then mkdir "${2}"; fi && cd "${2}" && wget "${3}"