https://github.com/picatz/isit
💫 The domain availability command-line uitlity.
https://github.com/picatz/isit
command-line domain-discovery whois
Last synced: 6 months ago
JSON representation
💫 The domain availability command-line uitlity.
- Host: GitHub
- URL: https://github.com/picatz/isit
- Owner: picatz
- Archived: true
- Created: 2017-12-27T03:30:03.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2018-04-19T19:58:03.000Z (over 7 years ago)
- Last Synced: 2025-03-24T04:43:39.918Z (7 months ago)
- Topics: command-line, domain-discovery, whois
- Language: Go
- Homepage:
- Size: 6.84 KB
- Stars: 15
- Watchers: 3
- Forks: 1
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# isit
> The domain availability command-line uitlity.This command-line application helps in domain name availability discovery with three different concurrent lookup methods.
## Install
```
$ go get github.com/picatz/isit
```## Build from Source
Until I've figured out a better solution:
```shell
$ go get github.com/urfave/cli
$ git clone https://github.com/picatz/isit.git
$ cd isit
$ go build isit.go
```## Command-line Options
The `available` command-line flag simply checks if the given domain(s) are available.
```shell
$ isit available google.com g000000000000000gle.com
false google.com
true g000000000000000gle.com
```The `registered` command-line flag simply checks if the given domain(s) have been registered.
```shell
$ isit registered google.com g000000000000000gle.com
true google.com
false g000000000000000gle.com
```The `resolvable` command-line flag simply checks if the given domain(s) are resolvable (to an IP address).
```shell
$ isit resolvable google.com g000000000000000gle.com
true google.com
false g000000000000000gle.com
```The `up` command-line flag simply checks if the given domain(s) are up or not.
```shell
$ isit up google.com g000000000000000gle.com
true google.com
false g000000000000000gle.com
```## Help Menu
```
NAME:
isit - domain availability command-line utilityUSAGE:
isit [global options] command [command options] [arguments...]VERSION:
1.0.0COMMANDS:
available, a check if the given domain(s) are available
registered, r check if the given domain(s) are registered
resolvable, R check if the given domain(s) are resolvable
up, u check if the given domain(s) are up
help, h Shows a list of commands or help for one commandGLOBAL OPTIONS:
--help, -h show help
--version, -v print the version
```