https://github.com/dannyben/ismine
Ruby command line domain checker with wildcards
https://github.com/dannyben/ismine
Last synced: over 1 year ago
JSON representation
Ruby command line domain checker with wildcards
- Host: GitHub
- URL: https://github.com/dannyben/ismine
- Owner: DannyBen
- License: mit
- Created: 2015-11-06T10:23:44.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2023-08-24T08:50:20.000Z (almost 3 years ago)
- Last Synced: 2024-10-19T15:53:52.925Z (over 1 year ago)
- Language: Ruby
- Homepage:
- Size: 30.3 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ismine - domain checker with wildcards
`ismine` is a command line domain checker with regular-expression-like
wildcard support. It is using [Runfile](https://github.com/DannyBen/runfile).
## Features
- Check for domain using DNS (faster) or Whois lookup
- Scout for multiple domain ideas at once
- Generate name ideas from patterns
## Install Gem Dependencies
Option 1, with bundler:
$ bundle
Option 2, manually:
$ gem install runfile
$ gem install whois
## Usage
$ run --help
## Examples
```
$ run check iwantit.com
iwantit.com is taken
$ run scout DoG.io
dog.io is probably available
dug.io is taken
dig.io is taken
$ run scout DoG.io --deep
dog.io is taken
dug.io is taken
dig.io is taken
$ run scout THE[cb]AR.co.uk --deep
thebar.co.uk is taken
thecar.co.uk is taken
$ run scout "(black white)(cat dog)" io
blackcat.io is taken
blackdog.io is probably available
whitedog.io is taken
whitecat.io is probably available
$ run ideas RED[bcl]OO?[dgm]
redloog
redcoom
redlom
redlog
redboom
```