Re: Append on top (easy sollution)

2004-11-14 Thread K-sPecial
) to move to the beginning of the file. Done :) --K-sPecial [ http://xzziroz.freeshell.org irc://xzziroz.dtdns.net ] -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] <http://learn.perl.org/> <http://learn.perl.org/first-response>

Re: Unlink ? [edited]

2004-11-14 Thread K-sPecial
ber to add prints to aid in debugging when needed (maybe cmdResult IS being defined). My suggestion is to either use unlink() or change 'if ($cmdResult =~ /^\s*$/) {' to 'if (!($cmdResult)) {' and try again. Using the * quantifier has been known to cause problems. --K-sPec

Re: Need help with creating a web forwarding site.

2004-11-14 Thread K-sPecial
ust looking for advice, pointers, suggestions, caveats, watch-out-fors and general information. Should be a fun exercise! Thanks, ZO You could simply put up an http 'error page moved' type thing, most all browsers will recognize this and load the new page. --K-sPecial [ http://xz

Re: Searching tecknical documentation

2004-11-15 Thread K-sPecial
A B.R. Stephen Liu perldoc.com is always a handy place to have as your quick check to lots of perl questions and answers. --K-sPecial [ http://xzziroz.freeshell.org irc://xzziroz.dtdns.net ] -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Searching tecknical documentation

2004-11-15 Thread K-sPecial
ttp://learn.perl.org/first-response> Damn (if I may say so), nice link. --K-sPecial [ http://xzziroz.freeshell.org irc://xzziroz.dtdns.net ] -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] <http://learn.perl.org/> <http://learn.perl.org/first-response>

Re: Searching tecknical documentation

2004-11-15 Thread K-sPecial
g from the authors of these books. Yea he's got a point... --K-sPecial -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] <http://learn.perl.org/> <http://learn.perl.org/first-response>

Re: Changing registry ACL?

2004-11-15 Thread K-sPecial
t;ACL" changes. But for all my registry needs i've used Tie::Registry from CPAN and have always had the success i've been looking for. --K-sPecial [ http://xzziroz.freeshell.org irc://xzziroz.dtdns.net ] -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional comm

Re: Searching tecknical documentation

2004-11-16 Thread K-sPecial
Randal L. Schwartz wrote: "K-sPecial" == K-sPecial <[EMAIL PROTECTED]> writes: K-sPecial> Damn (if I may say so), nice link. Die, pirate scum. You insult me personally by pirating my words. How do you expect me to have the means to write future books? I simply said it was a

Re: Append on top (easy sollution)

2004-11-16 Thread K-sPecial
K-sPecial wrote: Rajesh Dorairajan wrote: Does anyone know of a way to open a file in append mode and append on top of the file? Thanks in Advance, --Rajesh I don't know why people are having a problem with this sollution, simply open in append mode so open doesn't clobber the file

Re: Searching tecknical documentation

2004-11-16 Thread K-sPecial
Where I live that's cheaper than Internet access. EB I was implying that they could be viewed from the actual library. $20 a month can actualy be alot of money. --K-sPecial -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] <http://learn.

Re: Searching tecknical documentation

2004-11-16 Thread K-sPecial
Randal L. Schwartz wrote: "K-sPecial" == K-sPecial <[EMAIL PROTECTED]> writes: K-sPecial> But on another note, I don't believe many of the people K-sPecial> that claim this as 'stealing' are personaly looking in the K-sPecial> perspective of someone living

Re: Searching tecknical documentation (correction)

2004-11-16 Thread K-sPecial
Correction, I do admit, obviously. I hate for having to ever do such a thing. It's the sort of things i'm forced to live with daily. --K-sPecial -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] <http://learn.perl.org/> <http://l

Re: Autmatic function creation

2004-11-16 Thread K-sPecial
shift; $InheritableClassData{$_} = shift if @_; return $InheritableClassData{$_}; } } ---END--- Looks realy good here, I might use a closure through a typeglob to assign the subroutine though. --K-sPecial -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional command

Re: how to capture host name to a variable

2004-11-20 Thread K-sPecial
e intended recipient, please notify the sender at Wipro or [EMAIL PROTECTED] immediately and destroy all copies of this message and any attachments. system doesn't capture output, use backticks (``) for that: $systemserver = `hostname`; --K-sPecial [ http://xzziroz.freeshell.org irc://xz