Re: -e switch is not working on Window 7 and 8

2014-07-20 Thread WFB
Hi Purvee, perl -e 'xyz' works fine on Unix, however on Windows you must use instead. perl -e print qq(Hello \n) greetings, wolf On 21 July 2014 07:24, Purvee Vora purveev...@gmail.com wrote: Hi All, I am currently learing perl and was trying command line switches but It is not working

Re: Perl scope like cscope

2013-04-25 Thread WFB
As speaking of Perl IDE, It took some times if you are not familiar with Eclipse but together with EPIC the Perl Eclipse add-on it is a powerful Perl IDE. Greetings On 26 April 2013 05:43, senthil kumar sk.senthilku...@yahoo.com wrote: I too looking for this... and later on moved to Padre,

Re: Return values more than 256?

2013-03-08 Thread WFB
On 8 March 2013 11:49, Dr.Ruud rvtol+use...@isolution.nl wrote: On 2013-03-07 10:21, WFB wrote: waitpid($pid, 0); close($trexe); my $tr_ret = ($?8); Never postpone the reading of a global variable, just snapshot it as early as possible. my $child = waitpid $pid, 0; my

Return values more than 256?

2013-03-07 Thread WFB
Hi, List, First thank you for the help you provide. I follow this list quite a time and learned a lot. My problem, or question, respectively: To test our software I use perl to start it several times. My perl script gather some information and start then the program with different parameters.

Re: Return values more than 256?

2013-03-07 Thread WFB
On 7 March 2013 16:05, Brandon McCaig bamcc...@gmail.com wrote: On Thu, Mar 07, 2013 at 10:21:40AM +0100, WFB wrote: Hi, List, Hello, To test our software I use perl to start it several times. My perl script gather some information and start then the program with different parameters