9 lines
226 B
Bash
Executable File
9 lines
226 B
Bash
Executable File
#!/bin/bash
|
|
|
|
gallery_dl_path=/mnt/e/home/Documents/Data\ hoarding
|
|
cd "$gallery_dl_path"
|
|
|
|
urls=($(grep -Eo "(http|https)://[a-zA-Z0-9./?=_%:-]*" -i "$gallery_dl_path/todo.txt"))
|
|
|
|
for url in ${urls[@]}; do gallery-dl $url; done
|