在windows下面编译运行perl程序



1.搭建perl运行环境,windows下面可以使用ActivePerl,安装完之后请确认path里面有perl的目录,或者在控制台里面敲perl -h 验证环境时候搭建成功。
2.编写perl程序,简单一个:
#!/usr/bin/perl

use strict;
use warnings;

my $status;

### die this directory
$status = system("dir > dirHere.log "  ) ;
if ($status != 0)
{
print "dir failed";
exit -1;
}
print "$status : dir success \n";

$status = system( "notepad.exe dirHere.log" );
print "\n\n see opened log \n\n";
if ($status != 0)
{
print "Failed to open log file";
exit -1;
}

exit 0;
3.打开控制台且使目录切换到你perl程序的目录,然后敲perl yourPerlFile.pl即可


你可能感兴趣的:(windows,perl,System,Path)