defunkt (owner)

Fork Of

Forks

Revisions

gist: 217660 Download_button fork
public
Public Clone URL: git://gist.github.com/217660.git
Embed All Files: show embed
Bash #
1
2
3
4
5
6
7
#!/bin/bash
#
# Save in your .bash_profile then: isreg domain.com
 
function isreg {
  dig soa $1 | grep -q ^$1 && echo "Yes" || echo "No"
}