HTTP Download Manager with multi-parts
$ brew tap vbauerster/getparty
$ brew install getparty
$ paru -S getparty
$ git clone --depth 1 https://github.com/vbauerster/getparty.git
$ cd getparty/cmd/getparty && go build
Usage:
getparty [OPTIONS] [<url>]
Application Options:
-p, --parts=n number of parts (default: 1)
-r, --max-retry=n max retries per each part, 0 for infinite (default: 10)
--max-redirect=n max redirections allowed, 0 for infinite (default: 10)
-t, --timeout=sec initial context timeout (default: 15)
-b, --buf-size=KiB[2|4|8|16] buffer size, prefer smaller for slow connection (default: 8)
-l, --speed-limit=[1|2|3|4|5] speed limit gauge
-s, --session=FILE session state of incomplete download, file with json extension
-U, --user-agent=[chrome|firefox|safari|edge] User-Agent header (default: getparty/ver)
--username= basic http auth username
--password= basic http auth password
-H, --header=key:value http header, can be specified more than once
-q, --quiet quiet mode, no progress bars
-d, --debug enable debug to stderr
-v, --version show version
Https Options:
-c, --certs-file=certs.crt root certificates to use when verifying server certificates
--no-check-cert don't verify the server's certificate chain and host name
Output Options:
-o, --output.name=FILE output file name
-f, --output.overwrite overwrite existing file silently
--output.use-path resolve name from url path first (default: Content-Disposition header)
Best-mirror Options:
-m, --mirror.list=FILE|- mirror list input
-g, --mirror.max=n max concurrent http request (default: number of logical CPUs)
--mirror.top=n list top n mirrors, download condition n=1 (default: 1)
Help Options:
-h, --help Show this help message
Arguments:
<url>: http location
read mirrors.txt from a file and proceed to dowload from the best mirror:
getparty -m mirrors.txt
read mirrors.txt from a stdin and proceed to dowload from the best mirror:
cat mirrors.txt | getparty -m -
just list top 3 mirrors without any download:
getparty -m mirrors.txt --mirror.top 3