RE: Have script exec itself (was: Flush Everything)

2003-06-06 Thread Bob Showalter
Charles K. Clarkson wrote: > Bob Showalter <[EMAIL PROTECTED]>wrote: > > > Voodoo Raja wrote: > > > > > > there are more then enough to init manually. > > > > > > Is there any command I can use to kill any constants > > > assigned. > > > > One trick is to have your script exec() itself. > >

Have script exec itself (was: Flush Everything)

2003-06-06 Thread Charles K. Clarkson
Bob Showalter <[EMAIL PROTECTED]>wrote: : Voodoo Raja wrote: : > : > there are more then enough to init manually. : > : > Is there any command I can use to kill any constants : > assigned. : : One trick is to have your script exec() itself. What would this do? I didn't understand Voodoo's

RE: Flush Everything

2003-06-06 Thread Bob Showalter
Voodoo Raja wrote: > Hi there > > I have got a script running.. > > Its ment to repeat a particular sub routine using the "after" syntax > > All i want to do is clear everything in buffer ... since it eats up > the memory > > > I do not need any varaibles which I have defined in the sub. If

Re: Flush Everything

2003-06-06 Thread Lance
You could 'delete' or 'undef' variables you don't want. But I sense that you want a bigger wiper than that... If you define variables using 'my' in the sub, Perl's gargbage collection should annihilate them when it has time/needs resources. It might even eliminate them as soon as you exit the sub

Re: Flush Everything

2003-06-05 Thread Tassilo von Parseval
On Fri, Jun 06, 2003 at 04:12:11PM +1200 Voodoo Raja wrote: > I have got a script running.. > > Its ment to repeat a particular sub routine using the "after" syntax What is the "after" syntax? Do you mean statement-modifiers as in function() for 1 .. 10; ? > All i want to do is clear ev

Flush Everything

2003-06-05 Thread Voodoo Raja
Hi there I have got a script running.. Its ment to repeat a particular sub routine using the "after" syntax All i want to do is clear everything in buffer ... since it eats up the memory I do not need any varaibles which I have defined in the sub. there are more then enough to init manually