On Mar 8, 2013, at 8:57 PM, *Shaji Kalidasan* wrote:
> Greetings,
>
> I did a fresh installation of Active Perl version 5.16.2 and while using Perl
> Package Manager (PPM) GUI interface, the view all packages (Ctrl + 1) shows
> only the packages that comes with standard Perl distribution.
>
>
Greetings,
I did a fresh installation of Active Perl version 5.16.2 and while using Perl
Package Manager (PPM) GUI interface, the view all packages (Ctrl + 1) shows
only the packages that comes with standard Perl distribution.
It shows the total number of known packages (272 packages), number o
On Mar 8, 2013, at 4:49 PM, Kenneth Wolcott wrote:
> Hi;
>
> I'm Running into dependency hell with Cygwin when trying to install
> Excel-Writer-XLSX-0.65 and have all tests pass and not skipped
>
>
>
> So what's the best Perl module that recursively installs all
> prerequisites of a package
Hi;
I'm Running into dependency hell with Cygwin when trying to install
Excel-Writer-XLSX-0.65 and have all tests pass and not skipped
I wanted to experiment with Excel-Writer-XLSX-0.65 under Cygwin.
During the:
perl Makefile.PL + make + make test + make install
install process, during make test
U
sing Net::FTP is there a way to rename a file after locating it and before
putting it?
For example:
$ftp->put('/storage/pcmd/2013-03-08.17:21.-0700.MMEpcmd.gz') || die "can't
put file: $!";
Doesn't transfer correctly because the windows FTP server doesn't allow ":"
in the file name.
Any help
On Fri, Mar 8, 2013 at 2:49 AM, Dr.Ruud 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 $child_error
Sent from my iPad
On Nov 9, 2012, at 2:32 AM, beginners-digest-h...@perl.org wrote:
>
>
>
>
>
>
>
>
>
--
To unsubscribe, e-mail: beginners-unsubscr...@perl.org
For additional commands, e-mail: beginners-h...@perl.org
http://learn.perl.org/
On 8 March 2013 11:49, Dr.Ruud 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 $child_error = $?;
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 $child_error = $?; # snapshot a global
$child == -1 and die "No child with pid