in reply to Issue with communication of large data between Parent and child using Perl pipes
As others have noted, always start your Perl scripts with the following:
#!/usr/bin/perl -w use strict; use warnings 'all';
It can help prevent many bugs that otherwise would not have been obvious.
|
|---|