Skip to content

Instantly share code, notes, and snippets.

@mskf3000
Forked from spectra/fapt.sh
Created February 7, 2023 12:42
Show Gist options
  • Save mskf3000/a98e859477685f2a5ac8264236d926e7 to your computer and use it in GitHub Desktop.
Save mskf3000/a98e859477685f2a5ac8264236d926e7 to your computer and use it in GitHub Desktop.
Parallel downloading for apt-get
#!/bin/bash
NBATCH=3
NPARALLEL=5
(apt-get -y --print-uris $@ | egrep -o -e "http://[^\']+" | xargs -r -l${NBATCH} -P${NPARALLEL} wget -nv -P "/var/cache/apt/archives/") && apt-get $@
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment