mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2026-05-01 04:30:37 +02:00
11 lines
266 B
Bash
11 lines
266 B
Bash
# 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 "$@" ;
|
|
}
|