Watch
1
0
Fork
You've already forked oh-my-zsh
0
oh-my-zsh/plugins/iwhois/iwhois.plugin.zsh

5 lines
141 B
Shell
Raw Normal View History

function iwhois() {
resolver="whois.geek.nz"
tld=`echo ${@: -1} | awk -F "." '{print $NF}'`
whois -h ${tld}.${resolver} "$@" ;
}