https://github.com/ksk001100/ruget
Alternative to wget written in Rust
https://github.com/ksk001100/ruget
downloader rust wget
Last synced: 2 months ago
JSON representation
Alternative to wget written in Rust
- Host: GitHub
- URL: https://github.com/ksk001100/ruget
- Owner: ksk001100
- License: mit
- Created: 2019-09-02T10:15:14.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2023-05-12T14:16:03.000Z (over 2 years ago)
- Last Synced: 2025-06-29T21:16:48.742Z (3 months ago)
- Topics: downloader, rust, wget
- Language: Rust
- Homepage:
- Size: 3.17 MB
- Stars: 50
- Watchers: 3
- Forks: 8
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Ruget





[](https://travis-ci.org/ksk001100/ruget)Alternative to wget written in Rust
## install
```bash
$ cargo install ruget
```In macOS you can install it with Homebrew
```bash
$ brew tap ksk001100/homebrew-ruget
$ brew install ruget
```## usage
```bash
$ ruget https://sample-videos.com/img/Sample-png-image-30mb.png
$ ruget https://sample-videos.com/img/Sample-png-image-30mb.png --output sample.png
$ ruget https://sample-videos.com/img/Sample-png-image-30mb.png -o sample.png
```## Ruget vs Wget
### Ruget
```bash
$ time ruget http://ipv4.download.thinkbroadband.com/100MB.zip
...
...
...ruget http://ipv4.download.thinkbroadband.com/100MB.zip 2.00s user 3.38s system 33% cpu 15.858 total
```### Wget
```bash
$ time wget http://ipv4.download.thinkbroadband.com/100MB.zip
...
...
...wget http://ipv4.download.thinkbroadband.com/100MB.zip 0.34s user 1.84s system 8% cpu 26.428 total
```