mirror of
https://github.com/Phantop/dotfiles
synced 2024-11-09 00:14:53 +00:00
6 lines
136 B
Groff
6 lines
136 B
Groff
|
#!/bin/bash
|
||
|
for i in $(lynx -dump -hiddenlinks=listonly $@ | grep '\.epub' | awk 'FNR > 2 {print$2}' | grep http)
|
||
|
do
|
||
|
aria2c $i
|
||
|
done
|