Re: [exim] Turning host names into IP addresses

Páxina inicial
Borrar esta mensaxe
Responder a esta mensaxe
Autor: Marc Sherman
Data:  
Para: exim-users
Asunto: Re: [exim] Turning host names into IP addresses
Marc Perkel wrote:
> If I have a file with a list of host names and I want to turn that
> into a file with a list of IP addresses for those host names, what's
> the easiest way to do that?
>


Untested:

cat HOSTFILE | xargs dig +short > IPFILE

- Marc