Page MenuHomePhabricator
Paste P7358

host2network_constants.awk
ActivePublic

Authored by ema on Jul 11 2018, 1:56 PM.
Tags
None
Referenced Files
F23614986: host2network_constants.awk
Jul 11 2018, 1:56 PM
Subscribers
None
#!/usr/bin/awk -f
# convert /usr/bin/host output to the format used by
# modules/network/manifests/constants.pp
# Usage: host cp1008.wikimedia.org | ./host2network_constants.awk
{
ip = " '" $NF "',"
h = "# " $1
printf("%-57s %s\n", ip, h);
}