aboutsummaryrefslogtreecommitdiffstats
path: root/commands/taken
diff options
context:
space:
mode:
authormakefu <github@syntax-fehler.de>2015-08-28 23:39:37 +0200
committermakefu <github@syntax-fehler.de>2015-08-28 23:39:37 +0200
commit7eba4293714b9dce86c07ccf2fdaddaa11a4c3c7 (patch)
tree28fdc7158cd28e4b25cf5674ab54da8da8b69c1e /commands/taken
parent15026716ab3057998cf2f487742c2dd8e185335c (diff)
Reaktor: add nix support, packaging
Diffstat (limited to 'commands/taken')
-rwxr-xr-xcommands/taken28
1 files changed, 0 insertions, 28 deletions
diff --git a/commands/taken b/commands/taken
deleted file mode 100755
index b8beba6..0000000
--- a/commands/taken
+++ /dev/null
@@ -1,28 +0,0 @@
-#!/bin/sh
-#!/bin/bash
-
-# domainavailable
-# Fast, domain name checker to use from the shell
-# Use globs for real fun:
-# domainavailable blah{1..3}.{com,net,org,co.uk}
-# Inspired by foca / giles:
-# http://gilesbowkett.blogspot.com/2009/02/simple-bash-domain-availability.html
-
-for d in $@;
-do
-if host "$d" | grep "NXDOMAIN" >&/dev/null; then
- w=$(whois "$d")
- if ! test "$?" -eq 0 ;then
- echo "$d - whois not available"
- elif echo "$w" | grep -Ei "(No match|NOT FOUND|Status: free)" >&/dev/null; then
- echo "$d available";
- elif echo "$w"| grep -Ei "(Status: invalid)" >&/dev/null ;then
- echo "$d invalid"
- else
- echo "$d taken";
- fi
-else
- echo "$d taken";
-fi
-done
-exit 0