do you have any idea for this strange behaviour ?
Frankly, no. When I run the version I posted on my system:
C:\test>del ch
C:\test>type junk4.pl
#!/usr/bin/perl
use strict;
srand();
my $fil = "ch";
open( OUT, '>>', $fil ) or die $!;
binmode OUT;
for my $i ( 1 .. 10_000 ) {
my $j = int( rand( 20_000 ) ) + 440_000;
my $k = substr( pack( 'l>', $j ), 1 );
print OUT $k;
}
close( OUT );
print "DONE !";
C:\test>junk4
DONE !
C:\test>dir ch
Volume in drive C has no label.
Volume Serial Number is 8C78-4B42
Directory of C:\test
13/10/2011 15:29 30,000 ch
1 File(s) 30,000 bytes
0 Dir(s) 119,252,598,784 bytes free
I get exactly the result you'd expect?
Are you running it via a webserver? If so, maybe that has something to do with it, but that's not my arena.
With the rise and rise of 'Social' network sites: 'Computers are making people easier to use everyday'
Examine what is said, not who speaks -- Silence betokens consent -- Love the truth but pardon error.
"Science is about questioning the status quo. Questioning authority".
In the absence of evidence, opinion is indistinguishable from prejudice.
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
|
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.