in reply to Perl on Win98 vs. Win/NT/2000?
Sadly, the answer in some cases is Yes. I'm not sure of why this is.
I've been able to work around this in most cases by doing one of
system("map > temp"); open(M, "<temp") or die ...; @dmap=<M>; close(M);
open(M, "map|") or die ...; @dmap=<M>; close(M);
(I'm assuming that you have a DOS executable named "map". I don't, but I've run into this problem with other programs.)
|
---|
Replies are listed 'Best First'. | |
---|---|
Re:x2 Perl on Win98 vs. Win/NT/2000?
by grinder (Bishop) on Sep 10, 2001 at 11:19 UTC |