Thread Dummy file mit bestimmter Größe erzeugen?
(6 answers)
Opened by JackBauer at 2008-05-14 11:44
Fertig :) Habe es jetzt so gelöst:
Code (perl): (dl
)
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); @moritz Ich brauche die Datei schon in echt, da ich sie anschließend via FTP uploaden möchte. |