mirror of
https://github.com/Phantop/dotfiles
synced 2024-11-05 06:25:00 +00:00
6 lines
168 B
Bash
Executable file
6 lines
168 B
Bash
Executable file
#!/bin/bash
|
|
for i in $(grep works/[0-9]\* $@ -o | uniq | sed 's/works\///g' | sed '/^$/d')
|
|
do
|
|
aria2c https://download.archiveofourown.org/downloads/$i/\*.epub
|
|
done
|