Blame view

plugins/iwhois/iwhois.plugin.zsh 259 Bytes
093a6c34b   mj   Squashed 'repos/r...
1
2
3
4
5
6
7
8
  # provide a whois command with a more accurate and up to date list of whois
  # servers using CNAMES via whois.geek.nz
  
  function iwhois() {
      resolver="whois.geek.nz"
      tld=`echo ${@: -1} | awk -F "." '{print $NF}'`
      whois -h ${tld}.${resolver} "$@" ;
  }