Download manager and accelerator
You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Go to file
Trevor Slocum b65bbeebe6 Change default split connection count to 2 3 years ago
cmd/gophast Renew copyright 3 years ago
pkg Change default split connection count to 2 3 years ago
.gitignore Rewrite as library 4 years ago
.gitlab-ci.yml Migrate to GitLab 3 years ago
CHANGELOG Change default split connection count to 2 3 years ago
LICENSE Renew copyright 3 years ago
README.md Change default split connection count to 2 3 years ago
go.mod Change default split connection count to 2 3 years ago
go.sum Change default split connection count to 2 3 years ago
goreleaser.yml Migrate to GitLab 3 years ago

README.md

gophast

GoDoc CI status Donate

Download manager and accelerator

Features

  • Uses multiple connections to accelerate file transfers
  • Pause/resume support
    • Download progress is periodically written to a control file
    • Downloads are automatically paused when they are interrupted
    • Downloads are automatically resumed when a control file is present

Installation

Usage

gophast [OPTIONS] URL
   
OPTIONS:
  --dir value, -d value            directory to save in (default: current directory) [$GOPHAST_DIR]
  --downloads value, -j value      number of files to download concurrently (default: 5) [$GOPHAST_DOWNLOADS]
  --out value, -o value            file name to save as (default: from URL) [$GOPHAST_OUT]
  --split-conns value, -x value    split download using multiple connections (default: 2) [$GOPHAST_SPLIT_CONNECTIONS]
  --split-servers value, -s value  split download using multiple URLs (default: 1) [$GOPHAST_SPLIT_SERVERS]
  --split-size value, -k value     minimum byte range size (default: 10485760) [$GOPHAST_SPLIT_SIZE]
  --help, -h                       show help

Split download using at most three connections at least 10MB in size (default settings):

gophast https://example.com/file.zip

Split download using at most seven connections at least 2MB in size:

gophast -x 7 -k 2MB https://example.com/file.zip