1
0
Fork 0
mirror of https://github.com/Phantop/dotfiles synced 2024-09-17 15:38:49 +00:00
dotfiles/.local/bin/ao3.2

6 lines
136 B
Bash
Executable file

#!/bin/bash
for i in $(lynx -dump -hiddenlinks=listonly $@ | grep '\.epub' | awk 'FNR > 2 {print$2}' | grep http)
do
aria2c $i
done