Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/aladhims/godol
A Concurrent Downloader written in Go
https://github.com/aladhims/godol
concurrency downloader go utility
Last synced: 13 days ago
JSON representation
A Concurrent Downloader written in Go
- Host: GitHub
- URL: https://github.com/aladhims/godol
- Owner: aladhims
- License: mit
- Created: 2019-01-17T07:07:27.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2019-02-01T09:45:38.000Z (almost 6 years ago)
- Last Synced: 2024-06-20T06:32:10.562Z (5 months ago)
- Topics: concurrency, downloader, go, utility
- Language: Go
- Size: 5.86 KB
- Stars: 7
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## Intro
Godol is a utility tool for downloading a file faster by using the power of Go concurrency.
## Installation
From source:
```
$ go get github.com/aladhims/godol/cmd/godol
```Or manually download it from the [release page](https://github.com/aladhims/godol/releases).
## Usage
Basic (the URL must be specified)
```
$ godol --url=https://example.com/test.jpg
```With more workers (default: 10)
```
$ godol --url https://example.com/test.jpg --worker 20
```Custom file name
```
$ godol --url https://example.com/test.jpg --name foobar.jpg
```Custom directory
```
$ godol --url https://example.com/test.jpg --dest ~/your/custom/path
```Full Custom
```
$ godol --url https://example.com/test.jpg --worker 20 --name foobar.jpg --dest ~/your/custom/path
```Help:
```
$ godol --help
```![](https://img.shields.io/badge/license-MIT-blue.svg)