in perl script write a script Write a script that will create the following test files filled with random content: ◦ 1 x 100 MB file ◦ 10 x 10 MB files ◦ 100 x 1 MB files
Answers (1)
vote up or down the answers
Answer Link
use strict;
use warnings;
my $words = "What are you talking about?";
print "$words";
use warnings;
my $words = "What are you talking about?";
print "$words";
on August 19, 2013