aboutsummaryrefslogtreecommitdiff
path: root/.oh-my-zsh/plugins/iwhois/iwhois.plugin.zsh
blob: 22a75eec1eee75d732921832c7baa36e8c30fe93 (plain) (blame)
1
2
3
4
5
function iwhois() {
    resolver="whois.geek.nz"
    tld=`echo ${@: -1} | awk -F "." '{print $NF}'`
    whois -h ${tld}.${resolver} "$@" ;
}