Re: [exim] Turning host names into IP addresses

Startseite
Nachricht löschen
Nachricht beantworten
Autor: Marc Sherman
Datum:  
To: exim-users
Betreff: 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