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.
- Host: GitHub
- URL: https://github.com/kevingimbel/fget
- Owner: KevinGimbel
- License: mit
- Created: 2017-02-06T07:49:00.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2017-12-07T08:27:14.000Z (over 8 years ago)
- Last Synced: 2025-01-17T17:35:08.943Z (over 1 year ago)
- Topics: cli, command-line, downloader, file-download, go
- Language: Go
- Size: 7.81 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# fget
> Download files using Go `net/http` and `io`
[](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