Beefy Boxes and Bandwidth Generously Provided by pair Networks
The stupid question is the question not asked
 
PerlMonks  

Re: Bad file description for win32/bash/perl combo

by Coyo (Initiate)
on May 16, 2000 at 04:01 UTC ( [id://11777]=note: print w/replies, xml ) Need Help??


in reply to Bad file description for win32/bash/perl combo

Too many files!

Well, I may not have answered the question, but I have found that even putting too large of a string into a backtick operation causes the 'Bad file descriptor' error.

`wc $lots_of_files`;
does not work. It can be broken up so to be made to work:
@lots_of_files = split($lots_of_files);

$third = $#lots_of_files;

$a = join(' ', @lots_of_files [0..$third] );

$a = join(' ', @lots_of_files [1+$third..2*third]);

$a = join(' ', @lots_of_files [1+2*$third..$#lots_of_files] );

`wc $a`;

`wc $b`;

`wc $c`;

Well, that seems to work. It doesn't explain why redirection is failing for me in just about all cases though.

Maybe this is usefull to someone.

-coyo

  • Comment on Re: Bad file description for win32/bash/perl combo

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://11777]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others making s'mores by the fire in the courtyard of the Monastery: (1)
As of 2024-04-25 03:40 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found