create new files

# whatever arguments are given at the command line are
# taken to be the names for new text files,
# which are then created:

open OUT, ">$ARGV[0]" or die $!;
seek OUT,0,0 and print OUT " ";
close OUT;

source

Leave a Reply