Skip to content

Instantly share code, notes, and snippets.

@catatsuy
Created May 5, 2017 14:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save catatsuy/43e7e00e53fc43aaa961ccb1776356b5 to your computer and use it in GitHub Desktop.
Save catatsuy/43e7e00e53fc43aaa961ccb1776356b5 to your computer and use it in GitHub Desktop.
package main
import (
"fmt"
"net"
"os"
)
func main() {
host := os.Args[1]
addrs, _ := net.LookupHost(host)
for _, addr := range addrs {
names, _ := net.LookupAddr(addr)
fmt.Printf("%s ", addr)
for _, name := range names {
fmt.Println(name)
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment