Crates.io | site_checker |
lib.rs | site_checker |
version | 0.2.1 |
source | src |
created_at | 2016-02-09 20:41:21.98408 |
updated_at | 2016-03-03 14:57:18.246301 |
description | Simple site status checker written in Rust |
homepage | |
repository | https://github.com/dporru/rust-site-checker |
max_upload_size | |
id | 4138 |
size | 4,969 |
This is a simple site status checker written in Rust.
$ cargo install site_checker
Add the urls you want to check to urls.txt
and run the program:
$ site_checker -f /path/to/urls.txt
When the -f
flag is ommitted site_cecker will try to open urls.txt
in the
current directory.
By default the site_checker command only gives output for responses that don't
have a 200
status. With the -v
flag statuses for all responses are shown.
By default two threads are used to check urls. To change this behavior use to
-c
flag:
$ site_checker -c 4 -f /path/to/urls.txt
Will set a concurrency of 4.