<?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/1727" />

	<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>2002-05-16T18:52:00-04:00</updated>

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

		<entry>
		<author><name><![CDATA[Anonymous]]></name></author>
		<updated>2002-05-16T18:52:00-04:00</updated>

		<published>2002-05-16T18:52:00-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=6994#p6994</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=6994#p6994"/>
		<title type="html"><![CDATA[Triggering when a proc has finished...]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=6994#p6994"><![CDATA[
doesnt matter now..ive fixed it...thanx a lot!!!<p>Statistics: Posted by Guest — Thu May 16, 2002 6:52 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Petersen]]></name></author>
		<updated>2002-05-16T18:44:00-04:00</updated>

		<published>2002-05-16T18:44:00-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=6993#p6993</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=6993#p6993"/>
		<title type="html"><![CDATA[Triggering when a proc has finished...]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=6993#p6993"><![CDATA[
how exactly is lftp being called from the proc in the first place?<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=60">Petersen</a> — Thu May 16, 2002 6:44 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Anonymous]]></name></author>
		<updated>2002-05-16T18:04:00-04:00</updated>

		<published>2002-05-16T18:04:00-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=6992#p6992</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=6992#p6992"/>
		<title type="html"><![CDATA[Triggering when a proc has finished...]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=6992#p6992"><![CDATA[
That will not work with lftp because it is lftp that is doing the listing, and u cant set the listing to a variable...<br>The list is ouputted to a txt file!<p>Statistics: Posted by Guest — Thu May 16, 2002 6:04 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Anonymous]]></name></author>
		<updated>2002-05-16T16:13:00-04:00</updated>

		<published>2002-05-16T16:13:00-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=6986#p6986</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=6986#p6986"/>
		<title type="html"><![CDATA[Triggering when a proc has finished...]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=6986#p6986"><![CDATA[
You could use vwait. Set trigger 0<br>then after issuing the list command, issue a vwait on trigger. Then after listing has completed, set trigger 1.<br><br>The concept is demonstrated here:<br><a href="http://www.rustybrooks.org/Program/tutorial/TclTips_Socket.html" class="postlink">http://www.rustybrooks.org/Program/tuto ... ocket.html</a><p>Statistics: Posted by Guest — Thu May 16, 2002 4:13 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Anonymous]]></name></author>
		<updated>2002-05-16T13:37:00-04:00</updated>

		<published>2002-05-16T13:37:00-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=6980#p6980</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=6980#p6980"/>
		<title type="html"><![CDATA[Triggering when a proc has finished...]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=6980#p6980"><![CDATA[
Yes, but I am using lftp inside the tcl script, and is there any way of making it start the next proc, when lftp has stopped listing the dir?<p>Statistics: Posted by Guest — Thu May 16, 2002 1:37 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[ppslim]]></name></author>
		<updated>2002-05-16T09:41:00-04:00</updated>

		<published>2002-05-16T09:41:00-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=6977#p6977</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=6977#p6977"/>
		<title type="html"><![CDATA[Triggering when a proc has finished...]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=6977#p6977"><![CDATA[
Yes, make the last command in the proc, a call to the next one.<br><div class="codebox"><p>Code: </p><pre><code>proc first_proc {arg1 arg2} { code1 code2 code3 second_proc $arg1 $arg2}proc second_proc {arg1 arg2} { command command}</code></pre></div><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=2">ppslim</a> — Thu May 16, 2002 9:41 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Anonymous]]></name></author>
		<updated>2002-05-16T09:30:00-04:00</updated>

		<published>2002-05-16T09:30:00-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=6976#p6976</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=6976#p6976"/>
		<title type="html"><![CDATA[Triggering when a proc has finished...]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=6976#p6976"><![CDATA[
Is there anything that can trigger 1 proc as soon as the previous proc has finished?<p>Statistics: Posted by Guest — Thu May 16, 2002 9:30 am</p><hr />
]]></content>
	</entry>
	</feed>
