我对 perl 很陌生。我正在尝试创建一个 perl 脚本,它将执行多个 unix 命令以在某些 unix 服务器中创建 VNC 会话。
这是我的脚本 -
#!/usr/bin/perl -w
use Carp;
use strict;
use warnings;
# here get the parameters idsid
my $IdsId=$ARGV[0];
#excecute the commands here
my $user=`su -l $IdsId`;
my @finalresult=`vncserver -randr 1024x768,800x600,1024x768,1152x824,1280x1024,1280x800,1440x900,1400x1050,1600x1200,1920x1200`;
print "@finalresult";
但是当我执行这个脚本时它不起作用。
请一些身体帮助我。