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-checkerOtherwise, binary releases will be available soon.
Check a single domain:
domain-checker example.comCheck multiple domains:
domain-checker example.com example.orgCheck domains from a file:
cat domains.txt | domain-checkerFor help, run:
domain-checker --helpCheck 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