Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/thesurlydev/check
Bash script to check if a domain name, Twitter and GitHub username is available
https://github.com/thesurlydev/check
bash curl domain-discovery github twitter-checker
Last synced: 16 days ago
JSON representation
Bash script to check if a domain name, Twitter and GitHub username is available
- Host: GitHub
- URL: https://github.com/thesurlydev/check
- Owner: thesurlydev
- License: apache-2.0
- Created: 2019-09-01T22:03:56.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2020-09-21T15:55:37.000Z (over 4 years ago)
- Last Synced: 2024-05-02T04:48:48.761Z (8 months ago)
- Topics: bash, curl, domain-discovery, github, twitter-checker
- Language: Shell
- Homepage:
- Size: 14.6 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# check
Bash script to check the following:* Domain name availability. TLD defaults: `.com, .io, .net`
* [Twitter](https://twitter.com)
* [GitHub](https://github.com)
* [Instagram](https://instagram.com)## install
1. Add `check` file to your `PATH`
1. `chmod +x check`## configuration
By default, the script will check availability of the following TLDs: `.com, .io, .net`
These defaults can be changed by updating the `TLDS` array in the script.
Given an argument `foo`, the script will use `whois` to check domain name availability for: `foo.com, foo.io, foo.net`
`curl` will then be used to check availability of `foo` as a username for: GitHub, Instagram, Twitter
## usage
`check digitalsanctum`
will have output like the following:
```
$ check digitalsanctum
digitalsanctum.com: TAKEN
digitalsanctum.io: AVAILABLE
digitalsanctum.net: AVAILABLEGitHub: TAKEN
Twitter: TAKEN
Instagram: TAKEN
```Tested on Ubuntu 18.04. YMMV