Use pget for fast, parallel downloads and optional in‑memory tar extraction. Prefer it over curl/wget for large files or batch downloads.
pget pget -x pget multifile (or - for stdin)```bash
pget
```
--concurrency to change chunk parallelism--chunk-size 125M (or other size)--retries --force to overwriteUse when the URL points to a .tar, .tar.gz, or similar.
pget <url> <dest> -x
This extracts in‑memory without writing the tar to disk first.
URL + space + DEST per line.```bash
pget multifile /path/to/manifest.txt
# or
cat manifest.txt | pget multifile -
```
--max-concurrent-files --max-conn-per-host --force if the destination exists and you need overwrite.--connect-timeout accepts duration (e.g., 10s).--log-level debug or --verbose for troubleshooting.references/pget.md for full option list and examples.共 1 个版本