NOTE: use Perl; is on undef hiatus. You can read content, but you can't post it. More info will be forthcoming forthcomingly.
All the Perl that's Practical to Extract and Report
Stories, comments, journals, and other submissions on use Perl; are Copyright 1998-2006, their respective owners.
Crashes W2K! (Score:2, Informative)
I'm using cygwin Perl and interestingly, it doesn't crash it when run under cygwin bash, but does when run under the old command.com/MSDOS prompt. Cygwin bash must not use the offending module for output, or does something else that prevents the problem.
One correction. I think you meant:
perl -e 'while(1){print "\b\t\t\t\t\t\t"}'
'for(1)' doesn't loop, which seems to be required.
The above actually doesn't work either under command.com because of a quoting problem, but:
Re:Crashes W2K! (Score:1)
'for(1)' doesn't loop, which seems to be required. The above actually doesn't work either under command.com because of a quoting problem, but:
stot's it sapricely! Er, that's it precisely! I'll make the change now.
Re:Crashes W2K! (Score:1)
Indeed, 'for(1)' goes through the loop only once. But 'for(;;)' loops forever.