I have a text file with a list ip addresses and other information.

I am using an awk script to process this list and output various computations. I want to call dig -x from inside the awk script and use the returned value.

I have tried

hostname = system("dig +short -x" ip_address);

but what occurs is -

  1. the call to dig prints a line to the shell

  2. hostname remains null

link|improve this question

feedback

1 Answer

up vote 3 down vote accepted

Figured it out, but please feel free to add better answers

cmd = "dig +short -x " ;
cmd ip_address | getline hostname;
close(cmd)

Then I can use the hostname anywhere in the script.

link|improve this answer
This is the correct way to do it. You will probably want to do close(cmd) afterwards. – Dennis Williamson Jan 7 '11 at 18:44
Yes thanks, found out about that after this posting, will close the question in 2 days(superuser requirement) – bryan Jan 7 '11 at 19:06
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.