Beefy Boxes and Bandwidth Generously Provided by pair Networks
"be consistent"
 
PerlMonks  

Re^2: Strange "There is not enough space on the disk" error (Win32)

by bgreenlee (Friar)
on Mar 29, 2005 at 07:42 UTC ( [id://443061]=note: print w/replies, xml ) Need Help??


in reply to Re: Strange "There is not enough space on the disk" error (Win32)
in thread Strange "There is not enough space on the disk" error (Win32)

Do you have any info on the nature of cmd.exe's issues? I'm just really curious now as to what the underlying issue is.

pl2bat does work, although it's essentially just calling "perl test.pl", which I already know works. What I don't understand is, assuming you've got your .pl file association set up, what's the difference between just calling "test.pl", and "perl test.pl"?

The only thing I can think of is that when you force Windows to go out and find the associated program, it launches it in its own console rather than the existing one, and you somehow don't have access to that console's stdout (although you still get the output in your console, so...). Silly Windows.

-b

  • Comment on Re^2: Strange "There is not enough space on the disk" error (Win32)

Replies are listed 'Best First'.
Re^3: Strange "There is not enough space on the disk" error (Win32)
by bmann (Priest) on Mar 29, 2005 at 18:00 UTC
    Do you have any info on the nature of cmd.exe's issues?
    I wish I did. Here's what perldoc pl2bat has to say about it:
    ---8<--- 4 C:> ftype Perl=perl.exe "%1" %* C:> assoc .pl=Perl then C:> script.pl [args] 5 C:> ftype Perl=perl.exe "%1" %* C:> assoc .pl=Perl C:> set PathExt=%PathExt%;.PL then C:> script [args] ---8<--- 4 and 5 work on some Win32 operating systems with some command shells. One major disadvantage with both is that you can't use them in pipelin +es nor with file redirection. For example, none of the following will wor +k properly if you used method 4 or 5: C:> script.pl <infile C:> script.pl >outfile C:> echo y | script.pl C:> script.pl | more This is due to a Win32 bug which Perl has no control over. This bug is the major motivation for pl2bat [which was originally written for DOS] being used on Win32 systems.
    To paraphrase, it doesn't work because it doesn't work. ;)

    All I can see (from this and some searching of MSDN) is that redirection and pipes break when you use ftype and assoc to run a script. I have never seen a why. It's useful information, just not very informative.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others avoiding work at the Monastery: (3)
As of 2024-04-26 05:48 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found