An open API service indexing awesome lists of open source software.

https://github.com/thesurlydev/domain-checker

A simple command line tool to check if domain names are registered using DNS lookups.
https://github.com/thesurlydev/domain-checker

domain-checker domaining domains

Last synced: about 1 year ago
JSON representation

A simple command line tool to check if domain names are registered using DNS lookups.

Awesome Lists containing this project

README

          

# domain-checker

A simple command line tool to check if domain names are registered using DNS lookups.

## Installation

If you have Rust installed, you can install `domain-checker` using cargo:
```bash
cargo install domain-checker
```

Otherwise, binary releases will be available soon.

## Usage

Check a single domain:
```bash
domain-checker example.com
```

Check multiple domains:
```bash
domain-checker example.com example.org
```

Check domains from a file:
```bash
cat domains.txt | domain-checker
```

For help, run:
```bash
domain-checker --help
```

```bash
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 Maximum number of concurrent checks [default: 10]
-j, --json Output as JSON to stdout
--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
```