| Crates.io | domain-checker |
| lib.rs | domain-checker |
| version | 0.3.2 |
| created_at | 2024-11-12 18:39:58.605996+00 |
| updated_at | 2024-12-06 15:03:29.27723+00 |
| description | Domain checker |
| homepage | |
| repository | https://github.com/thesurlydev/domain-checker |
| max_upload_size | |
| id | 1445326 |
| size | 53,171 |
A simple command line tool to check if domain names are registered using DNS lookups.
If you have Rust installed, you can install domain-checker using cargo:
cargo install domain-checker
Otherwise, binary releases will be available soon.
Check a single domain:
domain-checker example.com
Check multiple domains:
domain-checker example.com example.org
Check domains from a file:
cat domains.txt | domain-checker
For help, run:
domain-checker --help
Check if domain names are registered using DNS lookups
Usage: domain-checker [OPTIONS] [DOMAINS]...
Arguments:
[DOMAINS]... Domain names to check (optional if reading from stdin)
Options:
-c, --concurrent <CONCURRENT> Maximum number of concurrent checks [default: 10]
-j, --json Output as JSON to stdout
--output-file <OUTPUT_FILE> Save output to JSON file
--clean Strip whitespace and empty lines from input
-u, --unregistered-only Show only unregistered domains in output
-h, --help Print help
-V, --version Print version