You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
my ($out,$err) = capture { system ('executable perl file')}
to capture stdout, and stderr.
It works, but what I also get is this
Use of uninitialized value in string ne at /tool/pandora64/.package/perl-5.18.1/lib/site_perl/5.18.1/x86_64-linux/File/Spec/Unix.pm line 176.
Use of uninitialized value in string ne at /tool/pandora64/.package/perl-5.18.1/lib/site_perl/5.18.1/x86_64-linux/File/Spec/Unix.pm line 176.
Use of uninitialized value in string ne at /tool/pandora64/.package/perl-5.18.1/lib/site_perl/5.18.1/x86_64-linux/File/Spec/Unix.pm line 176.
Use of uninitialized value $tmpenv{"TMPDIR"} in string ne at /tool/pandora64/.package/perl-5.18.1/lib/site_perl/5.18.1/x86_64-linux/File/Spec/Unix.pm line 176.
When I set TMPDIR (setenv TMPDIR /tmp) I can eliminate 3 of the messages, but I still get:
Use of uninitialized value in string ne at /tool/pandora64/.package/perl-5.18.1/lib/site_perl/5.18.1/x86_64-linux/File/Spec/Unix.pm line 176.
The capture actually works, and I get this message only once. Any additional capture will not cause the message anymore.
Am I missing something crucial, or is this something caused by Unix.pm or Capture::Tiny?
How do I fix it?
ps: perl 5.18.1, on x86_64 Centos 6.9
This is a host where I have user permissions only.
The text was updated successfully, but these errors were encountered:
I am trying a
my ($out,$err) = capture { system ('executable perl file')}
to capture stdout, and stderr.
It works, but what I also get is this
Use of uninitialized value in string ne at /tool/pandora64/.package/perl-5.18.1/lib/site_perl/5.18.1/x86_64-linux/File/Spec/Unix.pm line 176.
Use of uninitialized value in string ne at /tool/pandora64/.package/perl-5.18.1/lib/site_perl/5.18.1/x86_64-linux/File/Spec/Unix.pm line 176.
Use of uninitialized value in string ne at /tool/pandora64/.package/perl-5.18.1/lib/site_perl/5.18.1/x86_64-linux/File/Spec/Unix.pm line 176.
Use of uninitialized value $tmpenv{"TMPDIR"} in string ne at /tool/pandora64/.package/perl-5.18.1/lib/site_perl/5.18.1/x86_64-linux/File/Spec/Unix.pm line 176.
When I set TMPDIR (setenv TMPDIR /tmp) I can eliminate 3 of the messages, but I still get:
Use of uninitialized value in string ne at /tool/pandora64/.package/perl-5.18.1/lib/site_perl/5.18.1/x86_64-linux/File/Spec/Unix.pm line 176.
The capture actually works, and I get this message only once. Any additional capture will not cause the message anymore.
Am I missing something crucial, or is this something caused by Unix.pm or Capture::Tiny?
How do I fix it?
ps: perl 5.18.1, on x86_64 Centos 6.9
This is a host where I have user permissions only.
The text was updated successfully, but these errors were encountered: