<?xml version="1.0" encoding="UTF-8"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en-gb">
	<link rel="self" type="application/atom+xml" href="https://forum.eggheads.org/app.php/feed/topic/11820" />

	<title>egghelp/eggheads community</title>
	<subtitle>Discussion of eggdrop bots, shell accounts and tcl scripts.</subtitle>
	<link href="https://forum.eggheads.org/index.php" />
	<updated>2006-05-10T01:17:32-04:00</updated>

	<author><name><![CDATA[egghelp/eggheads community]]></name></author>
	<id>https://forum.eggheads.org/app.php/feed/topic/11820</id>

		<entry>
		<author><name><![CDATA[demond]]></name></author>
		<updated>2006-05-10T01:17:32-04:00</updated>

		<published>2006-05-10T01:17:32-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=62874#p62874</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=62874#p62874"/>
		<title type="html"><![CDATA[need help with script lookup]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=62874#p62874"><![CDATA[
since you're not sure what I'm saying, just trust me when I'm saying nslookup is irrelevant here<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=5056">demond</a> — Wed May 10, 2006 1:17 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[p0rn0saurus]]></name></author>
		<updated>2006-05-10T01:14:01-04:00</updated>

		<published>2006-05-10T01:14:01-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=62873#p62873</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=62873#p62873"/>
		<title type="html"><![CDATA[need help with script lookup]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=62873#p62873"><![CDATA[
im not sure what you are saying, in unix if i type nslookup <a href="http://www.yahoo.com" class="postlink">www.yahoo.com</a> i get the following,<br><br>nslookup <a href="http://www.yahoo.com" class="postlink">www.yahoo.com</a><br>Server:  localhost<br>Address:  127.0.0.1<br><br>Non-authoritative answer:<br>Name:    <a href="http://www.yahoo.akadns.net" class="postlink">www.yahoo.akadns.net</a><br>Addresses:  66.94.230.32, 66.94.230.36, 66.94.230.40, 66.94.230.46<br>          66.94.230.37, 66.94.230.39, 66.94.230.48, 66.94.230.75<br>Aliases:  <a href="http://www.yahoo.com" class="postlink">www.yahoo.com</a><br>--------------------------------------------------------------------------------<br>with that script on irc, i would get the following<br>DNS Lookup: <a href="http://www.yahoo.akadns.net" class="postlink">www.yahoo.akadns.net</a> &lt;-&gt; 127.0.0.1 &lt;-&gt; 66.94.230.35, 66.94.230.50, 66.94.230.49, 66.94.230.32<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=7744">p0rn0saurus</a> — Wed May 10, 2006 1:14 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[demond]]></name></author>
		<updated>2006-05-10T01:07:19-04:00</updated>

		<published>2006-05-10T01:07:19-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=62871#p62871</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=62871#p62871"/>
		<title type="html"><![CDATA[need help with script lookup]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=62871#p62871"><![CDATA[
<em class="text-italics">nslookup</em> doesn't provide info on host's online status, so the script you posted is irrelevant<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=5056">demond</a> — Wed May 10, 2006 1:07 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[p0rn0saurus]]></name></author>
		<updated>2006-05-10T01:02:26-04:00</updated>

		<published>2006-05-10T01:02:26-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=62870#p62870</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=62870#p62870"/>
		<title type="html"><![CDATA[need help with script lookup]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=62870#p62870"><![CDATA[
heh maybe i should go into details. i saw this nslookup script which is NOT written by me<div class="codebox"><p>Code: </p><pre><code>proc msg_nslookup {nick uhost hand arg} {global nsl_pathset input [open "|$nsl_path $arg" r]while {![eof $input]} { catch {set contents [gets $input]}if {[string first "Name:" $contents] &gt;= 0} {set name [string range $contents 9 end]}if {[string first "Address:" $contents] &gt;= 0} {set address [string range $contents 10 end]}            if {[string first "Addresses:" $contents] &gt;= 0} {set addresses [string range $contents 12 end]}}catch {close $input}if {$address == "127.0.0.1"} {putserv "PRIVMSG $nick :DNS Lookup: $name &lt;-&gt; $address &lt;-&gt; $addresses"return 0} else {putserv "PRIVMSG $nick :DNS Lookup: $name &lt;-&gt; $address"return 0}}</code></pre></div> I know with putserv it gives name address etc but i was wondering how to spill everything. i know in unix when you do nslookup <a href="http://www.yahoo.com" class="postlink">www.yahoo.com</a> you get alot more info and i want all that info to send to the user instead of just 3 lines<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=7744">p0rn0saurus</a> — Wed May 10, 2006 1:02 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[demond]]></name></author>
		<updated>2006-05-10T00:46:27-04:00</updated>

		<published>2006-05-10T00:46:27-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=62867#p62867</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=62867#p62867"/>
		<title type="html"><![CDATA[need help with script lookup]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=62867#p62867"><![CDATA[
many do; look around (hint: there is a 'Search' button above)<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=5056">demond</a> — Wed May 10, 2006 12:46 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[p0rn0saurus]]></name></author>
		<updated>2006-05-10T00:21:59-04:00</updated>

		<published>2006-05-10T00:21:59-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=62862#p62862</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=62862#p62862"/>
		<title type="html"><![CDATA[need help with script lookup]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=62862#p62862"><![CDATA[
I was wondering if anyone got a script that will do a shell command and return the value to the user. command such as !uptime, etc<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=7744">p0rn0saurus</a> — Wed May 10, 2006 12:21 am</p><hr />
]]></content>
	</entry>
	</feed>
