- or download this
my $filename = 'c:\\somefile';
my @input = `$ENV{COMSPEC} /c type "$filename"`;
- or download this
my $filename = 'c:\\somefile';
open my $fh, "<", $filename
or die "Couldn't read '$filename': $!";
my @input = <$fh>;
- or download this
system($^X,"-w","path/to/other/script.pl");