1

我正在尝试使用以下 perl 驱动程序执行带有参数的 php 脚本:

#!/opt/local/bin/perl
use strict;
use warnings;
use Getopt::Long;
use Cwd;

my %args = ();

GetOptions(
            \%args,           "NUM_AGENTS|a=s",
            "HOST_NAME|h=s",  "TIME_STAGGER|t=s",
            "USER_NAME|un=s", "USER_PASS|pw=s",
            "TARGET_PAGE|p=s"
) or die "Unknown parameter!\n";

my $i         = 0;
my $startTime = time;

my $pwd = getcwd();

my $logdir = "$pwd/load-logs";

mkdir $logdir
  or die "Cannot mkdir $logdir: $!"
  unless -d $logdir;
chmod 0755, $logdir or die "Cannot chmod 0755 $logdir: $!";

my $startTimeTemp = $args{NUM_AGENTS} + $startTime;
my $startTime2    = $startTimeTemp + 10;

mkdir( "$logdir/$startTime2", 0777 )
  or die "Cannot mkdir $logdir/$startTime2: $!"
  unless -d "$logdir/$startTime2";

my $random_number = rand() * 10;
my $execDelay =
  ( $random_number % $args{TIME_STAGGER} ) * ( ( $random_number % 100 ) );
my $procStartTime = $startTime2 + $execDelay;

my $reqlogfile  = "$logdir/$startTime2/req.log";
my $resplogfile = "$logdir/$startTime2/resp.log";

print "NUM_AGENTS: " . "$args{NUM_AGENTS}\n";
print "HOST_NAME: " . "$args{HOST_NAME}\n";
print "procStartTime: " . "$procStartTime\n";
print "i: " . "$i\n";
print "TARGET_PAGE: " . "$args{TARGET_PAGE}\n";
print "resplogfile: " . "$resplogfile\n";
print "USER_NAME: " . "$args{USER_NAME}\n";
print "USER_PASS: " . "$args{USER_PASS}\n";
print "execDelay: " . "$execDelay\n";
print "COMMON_SID: " . "$args{COMMON_SID}\n";

while ( $args{NUM_AGENTS} > $i ) {
    $i++;
    print "count: " . "$i\n";

    my $argString =
"'$args{NUM_AGENTS}' '$args{HOST_NAME}' '$procStartTime' '$i' '$args{TARGET_PAGE}' 'resplogfile' '$reqlogfile' '$args{USER_NAME}' '$args{USER_PASS}' '$execDelay' '$args{COMMON_SID}'";

    system("php loadAgent_curl.php $argString") == 0 or die "failed to execute: $!";

    sleep 1;

    #system("ls");
}

但似乎有问题:

system("php loadAgent_curl.php $argString") 

由于 ls 系统命令运行良好,但带参数的 php 命令却没有

此 perl 脚本的命令行参数可以是:

-a 10 -h ktest.test.net -t 5 -un admin -pw adminpassword -p "acViewer/index.html?StartDate=20090926040000&EndDate=20111220235959"

4

3 回答 3

4

与大多数其他 Perl 命令不同,system“成功”返回 0,“失败”返回非零。所以典型的成语是

system $command and die ...

代替

system $command or die ...

更新:OP 确实把这部分做对了——system(...)==0 or die ...这也是对system命令进行错误检查的一种非常好的方法。


在您传递给命令的确切命令中也可能有一些时髦的引用system。对于这样的任务,通常最好绕过 shell 并使用 LIST 形式system将命令直接传递给操作系统。也许是这样的:

my @argList = ($args{NUM_AGENTS}, $args{HOST_NAME}, $procStartTime, $i,
               $args{TARGET_PAGE}, 'resplogfile', $reqlogfile, $args{USER_NAME},
               $execDelay, $args{COMMON_SID});
system("php", "loadAgent_curl.php", @argList) and die "failed to execute: $!";

(并确保php在您的$PATH[或指定 ] 的完整路径中php并且loadAgent_curl.php在当前目录中)。

于 2011-01-03T17:51:33.353 回答
0

您没有提到您收到的错误消息的类型。是类似的Cannot find "php"还是别的什么。

您可能在使用引号时遇到问题。这里有一些建议:

  • 使用qq()而不是引号。这会让事情变得更干净一些。
  • 将命令构建到一个名为的变量$command中,以防万一出现错误,您可以将其打印出来。这可能会帮助您了解您可能在哪里遇到问题。
  • $error设置执行时调用的变量system,然后检查该变量。它比你在失败和成功时必须做的倒退风格的and/or东西要清晰得多,而且更容易维护。

例子:

my $argString = qq("$args{NUM_AGENTS}" "$args{HOST_NAME}" ) 
    . qq( "$procStartTime" "$i" "$args{TARGET_PAGE}" "resplogfile" )
    . qq("$reqlogfile" "$args{USER_NAME}" "$args{USER_PASS}" )
    . qq("$execDelay" "$args{COMMON_SID}");

my $command = qq(php loadAgent_curl.php $argString);

my $error = system qq($command);
if ($error) {
    die qq(ERROR: Failed to execute "$command"\n\n$!);
}

至少通过这种方式,您可以看到哪个命令失败,并更好地了解它可能没有执行的原因。

于 2011-01-03T21:33:46.660 回答
0

尝试 PHP - GetOptionKit:

http://c9s.blogspot.com/2011/11/php-getoptionkit.html

概要

use GetOptionKit\GetOptionKit;

$getopt = new GetOptionKit;
$spec = $getopt->add( 'f|foo:' , 'option require value' );  # returns spec object.

$getopt->add( 'b|bar+' , 'option with multiple value' );
$getopt->add( 'z|zoo?' , 'option with optional value' );

$getopt->add( 'f|foo:=i' , 'option require value, with integer type' );
$getopt->add( 'f|foo:=s' , 'option require value, with string type' );
于 2011-11-29T07:00:28.400 回答