I made a file called to_find_ip which has a hostname on every line. And a simple bash script to process the file and return the matching IP.
The script called get_ip_for_list_of_hostnames.sh (use getent ahosts if you only need IPv4 addresses)
#!/bin/bash
while read p; do
getent hosts $p | cut -f1 -d ' '
done <$1
To run the script:
sh /tmp/get_ip_for_list_of_hostnames.sh /tmp/to_find_ip