Sponsored Content
Full Discussion: I need help with...<various>
Top Forums Shell Programming and Scripting I need help with...<various> Post 302242049 by Habitual on Wednesday 1st of October 2008 04:26:24 AM
Old 10-01-2008
And here's the answer I wanted with desired output:

host -t ns example.com | while read dom ns server; do dig +short $dom | echo $server "shows an IP of" `dig +short $dom` for $dom; done <enter>

Gives me this output:
server a.iana-servers.net. shows an IP of 208.77.188.166 for example.com
server b.iana-servers.net. shows an IP of 208.77.188.166 for example.com

Thanks era for the assist. Smilie
 
tdom(n) 																   tdom(n)

__________________________________________________________________________________________________________________________________________________

NAME
tdom - tdom is an expat parser object extension to create an in-memory DOM tree from the input while parsing. SYNOPSIS
package require tdom set parser [expat] tdom $parser enable _________________________________________________________________ DESCRIPTION
tdom adds the C handler set "tdom" to an tcl expat parser obj. This handler set builds an in-memory DOM tree out of the input, parsed by the parser. A DOM tree created this way behave exactly like a DOM tree created by the "dom" command (see there). In fact, tdom is only another interface to the same functionality; it uses the code behind the dom code for building the DOM tree. tdom parserObj enable Adds the tdom C handler set to a Tcl expat parser object. Next time, the parser parses input, the tdom C handler functions create an in-memory DOM tree. tdom parserObj getdoc Returns the DOM tree as domDoc (see there) object. tdom parserObj setResultEncoding See the method setResultEncoding of the dom command. tdom parserObj setStoreLineColumn ?boolean? See the method setStoreLineColumn of the dom command. tdom parserObj remove Removes the tdom C handler set from the parser object. tdom parserObj keepEmpties See the option -keepEmpties of the dom command. tdom parserObj setExternalEntityResolver script SEE ALSO
dom, expat KEYWORDS
DOM, SAX, C handler set Tcl tdom(n)
All times are GMT -4. The time now is 01:26 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy