fix: adds wget_download.sh, fixes images tag

This commit is contained in:
2025-04-23 16:24:46 -05:00
parent 6dc6fbd449
commit f23048e813
2 changed files with 3 additions and 1 deletions

2
bash/app/wget_download.sh Executable file
View File

@@ -0,0 +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}"