Re: [exim] Turning host names into IP addresses

Page principale
Supprimer ce message
Répondre à ce message
Auteur: Marc Sherman
Date:  
À: exim-users
Sujet: 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