This commit is contained in:
frankiexyz 2018-04-17 20:49:42 +00:00 committed by GitHub
commit e239f9648e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 11 additions and 0 deletions

View File

@ -0,0 +1,11 @@
# IP/ASN lookup by using cymru's whois server
#>whois 8.8.8.8
#AS | IP | AS Name
#15169 | 8.8.8.8 | GOOGLE - Google Inc., US
#>cwhois as15169
#AS Name
#GOOGLE - Google Inc., US
function cwhois() {
whois -h whois.cymru.com "$@" ;
}