7 Einträge, 1 Seite |
1 2 3 4 5 6 7 8 9
my $size = 300; my $counter = $size * 1024; open(file, ">".$size."kb.txt"); for(my $i=0; $i < $counter; $i++) { print file "*"; } close(file);
1 2 3 4 5 6 7 8 9
use strict; use warnings; my $size = 300; open my $file, ">", $size . "kb.txt" or die $!; print $file "*" x 1024 for 1 .. $size; close $file;
JackBauer+2008-05-14 10:16:21--Naja, bei kleinen Dateigrößen macht sich das sicher nicht wirklich bemerkbar...
1 2 3 4 5 6 7 8 9 10
#!/usr/bin/perl use strict; use warnings; my $size = 1_000_000; open my $bigfile, '>', 'bigfile' or die $!; seek $bigfile, $size-1, 0; print $bigfile "\0"; close $bigfile;
7 Einträge, 1 Seite |