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

	<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>2013-02-08T13:21:06-04:00</updated>

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

		<entry>
		<author><name><![CDATA[dj-zath]]></name></author>
		<updated>2013-02-08T13:21:06-04:00</updated>

		<published>2013-02-08T13:21:06-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=100921#p100921</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=100921#p100921"/>
		<title type="html"><![CDATA[[not solved, but a workaround] Wildcards (*) no longer work!]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=100921#p100921"><![CDATA[
yep, that's pretty much it...<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=10318">dj-zath</a> — Fri Feb 08, 2013 1:21 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[caesar]]></name></author>
		<updated>2013-01-31T07:55:09-04:00</updated>

		<published>2013-01-31T07:55:09-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=100860#p100860</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=100860#p100860"/>
		<title type="html"><![CDATA[[not solved, but a workaround] Wildcards (*) no longer work!]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=100860#p100860"><![CDATA[
what was the issue again? the * is not treated as wildcard in <em class="text-italics">glob</em>?<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=187">caesar</a> — Thu Jan 31, 2013 7:55 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[dj-zath]]></name></author>
		<updated>2013-01-31T07:46:13-04:00</updated>

		<published>2013-01-31T07:46:13-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=100859#p100859</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=100859#p100859"/>
		<title type="html"><![CDATA[[not solved, but a workaround] Wildcards (*) no longer work!]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=100859#p100859"><![CDATA[
this function was depreciated;  it couldn't have worked (but, I tell you, before, it DID!).<br><br>I did have a 'solution'.. but, then the server was quickly taken out by hackers.. and I lost all the work before I could back it up..<br><br>I have to start over from scratch..<br><br>if I can remember EXACTLY what I had to do, and then, apply to the new work, to "get around the issue" I'll let you know.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=10318">dj-zath</a> — Thu Jan 31, 2013 7:46 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[dj-zath]]></name></author>
		<updated>2013-01-31T07:47:46-04:00</updated>

		<published>2013-01-22T20:49:56-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=100728#p100728</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=100728#p100728"/>
		<title type="html"><![CDATA[[not solved, but a workaround] Wildcards (*) no longer work!]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=100728#p100728"><![CDATA[
hi all, I admit.. I'm very tired and very flustered right now..<br><br>but I have discovered that a part of my script- which USED to work FLAWLESSLY.. however, now doesn't seem to work anymore.<br><br>I have tracked the problem down to a wildcard character * which has now become <em class="text-italics">part of the string</em> and not a wildcard at all.<br><br>further checking/testing revealed that ALL the other *'s throughout the code , as well, are no-longer seen as wildcards either!<br><br>so, whats SCREWY thing has gone wrong THIS time?<br><br>I have tried the installing the latest ver of TCL and its modules plus, I even recompiled the bot from scratch with no luck...<br><br>still doesn't work!<br><br>so, what have I done wrong/what has gone a-muck?<br><br>note:<br><br>I have since upgraded from FBSD 7.4 x 32 bit to FBSD 9.0 x 64 bit when I noticed this #%#@$ has broken!<br><br>for example, the following:<br><div class="codebox"><p>Code: </p><pre><code>putlog "[catch {foreach T [glob warp_show-*.mp3] {;}}]"</code></pre></div>will only return a result IF the filename actually is "warp_show-*.mp3"<br><br>its supposed to return a result of any file(s) which contain the string with a wildcard; example: warp_show-6-9-2013.mp3<br><br>also the script snippet:<br><div class="codebox"><p>Code: </p><pre><code>if {(![catch {foreach VarA [glob "warp_show*.mp3"] {catch {exec rm -rf $VarA};};}])} {    putquick "NOTICE $nick :Archives deleted!";} else {    putquick "NOTICE $nick :No archives to delete were found.";};</code></pre></div>will only delete the file named: <em class="text-italics">warp_show*.mp3</em><br><br>these are just 2 examples..  theres even  some code that the awesome NML375 did for me that now doesn't work either.<br><br>-DjZ-<br><img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_sad.gif" width="15" height="15" alt=":(" title="Sad"> <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_sad.gif" width="15" height="15" alt=":(" title="Sad"><br><br><em class="text-italics"><br>UPDATE:<br>I removed this post from its original place and moved it to this forum, sorry about putting it in the wrong place by mistake... OOPS!</em><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=10318">dj-zath</a> — Tue Jan 22, 2013 8:49 pm</p><hr />
]]></content>
	</entry>
	</feed>
