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

Be the first to add this question to starred list!
▼Scroll down for more questions

Answers (1)

vote up or down the answers
0
Reploid_Zero
use strict;
use warnings;

my $words = "What are you talking about?";

print "$words";
on August 19, 2013
Report