Voici mon script et je suis bon pour la section audacieuse. J'essaie de terminer mon script en vérifiant si mes noms d'hôte sont un enregistrement A ou un alias. Je n'ai pas de chance et j'ai vraiment besoin des conseils de quelqu'un. J'ai essayé d'utiliser grep et awk et semble ne pas fonctionner.
#!/bin/sh
#Query DB for cnames
#Pulling cnames
#Lets use sed to clean up and remove "" that regex miss.
#Added dos2unix to get rid of the hidden M from /tmp/final.csv
mssql -f csv -c ~/applications/mssql/mssql.json -q "SELECT * FROM Cname" | cut -f 3 -d "," | sed 's/["]//g' | sort | uniq | dos2unix >/tmp/final.csv
#Validating cnames from file /tmp/final.csv
while read -r host
do
echo $host | egrep "^(([a-zA-Z0-9]|[a-zA-Z0-9][a-zA-Z0-9\-]*[a-zA-Z0-9])\.)+([A-Za-z0-9]|[A-Za-z0-9][A-Za-z0-9\-]*[A-Za-z0-9])$" >/dev/null 2>&1
if [ $? -eq 0 ]
then
echo "host $host 8.8.8.8"
else
echo "unable to resolve '$host'" >&2
fi
done < /tmp/final.csv
# removed weird stars from some of these lines -- thrig
#Verify whether it's an A record or an alias
LOOKUP=`host $host 8.8.8.8`
if [ $? -eq 0 ]
then
echo $LOOKUP | grep -f "alias" | awk '{print $2}'| grep -v '#' | awk '{print $2}'
else
echo "$LOOKUP is null"
fi
# what is this in relation to?? -- thrig
done