我想在 perl 脚本中打开一个(IP 地址或网络链接)并将属性用户名的值传递给该 IP 地址或网络链接。请在我的以下 perl 脚本中添加必要的配置行并附上解释。
注意:在下面的脚本中,要执行一个 exe 文件,我现在不想要这个。相反,请将其替换为打开 ipaddress/weblink 的配置,然后将属性“username”的值传递给此链接或 IP。
#!/usr/bin/perl
use warnings;
use strict;
my $p;
print "Hello Radiator is executing the exe file via TKs perl scripting \n";
my $user_name = $p->getUserName;
open my $EX1_PIPE, '|-', "exelocation\file.exe $user_name"
or die "location\file.exe $!\n";
print $EX1_PIPE "$_\n" for ($user_name);
close $EX1_PIPE or die $!;
谢谢,托马斯