Skip to content

Instantly share code, notes, and snippets.

@bkj
Created September 14, 2017 00:52
Show Gist options
  • Save bkj/0e20647801f5f19f8fce0a59c3bbfec8 to your computer and use it in GitHub Desktop.
Save bkj/0e20647801f5f19f8fce0a59c3bbfec8 to your computer and use it in GitHub Desktop.
#!/bin/bash
echo $1
cd $1
touch _start
gzip -cd $1.gz > urls
cat urls | sed 's@https://@out=@g' | paste urls - | sed 's/\t/\n\t/g' > aria-urls
aria2c -j8 --deferred-input --conditional-get=true --auto-file-renaming=false -q -i aria-urls
touch _finish
cd ..
tar -cf $1.tar $1
rm -rf $1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment