mirror of
https://github.com/Phantop/dotfiles
synced 2024-11-17 04:12:44 +00:00
7 lines
252 B
Fish
7 lines
252 B
Fish
function ao3
|
|
grep works/.\*/b $argv | cut -d/ -f3 | uniq | parallel curl -OJL ao3.org/downloads/{}/1.epub
|
|
for i in *.epub
|
|
mv $i (tar Oxf $i content.opf | pup | grep -A1 -m1 dc:title | tail -1 | sed 's/^ *//' | tr -d /).epub
|
|
end
|
|
end
|