An open API service indexing awesome lists of open source software.

https://github.com/kevingimbel/fget

Straightforward file downloading with Go.
https://github.com/kevingimbel/fget

cli command-line downloader file-download go

Last synced: about 2 months ago
JSON representation

Straightforward file downloading with Go.

Awesome Lists containing this project

README

          

# fget
> Download files using Go `net/http` and `io`

[![Go Report Card](https://goreportcard.com/badge/github.com/kevingimbel/fget)](https://goreportcard.com/report/github.com/kevingimbel/fget)

"Dumb" file downloader for the command line which will just download whatever
file you request from an URL. Probably has lots of issues, e.g. it just dumps the content it receives into a file with the same name. For example, requesting a `index.php` file will create a `index.php` file with the content of the rendered page on your local machine. Consider the following example:

Content of http://example.com/index.php
```php