Perl CGI 更改未反映在浏览器中

发布于 2024-12-15 07:53:54 字数 489 浏览 0 评论 0原文

我是 Perl 脚本新手,遇到了一些麻烦。我有一个 HTML 表单,它将一些数据传输到 CGI 脚本。然而,它似乎正在放弃最旧版本的 CGI 脚本而不是最新版本。是否可能是因为下面的 perl 脚本有错误?我尝试使用调试器,但我不知道如何使用它来执行我的脚本,更不用说从命令行传递我需要的参数了。 感谢您的帮助!

#!/usr/bin/perl

use CGI;
use CGI::Carp qw(fatalsToBrowser);
$q = new CGI;

print $q->header;
    $q->start_html('Finger User');
    $q->h1('Finger User');
print "<pre>";

$user = $q->param("user");
print `/usr/bin/finger/ -s $user~`;

print "</pre>";
print $q->end_html;

I am new to Perl Scripts and I am having a bit of trouble. I have an HTML Form that transmits some data to a CGI script. However, it seems to be going off the oldest version of the CGI script instead of the newest version. Is it possibly because there is an error in perl script, which is below? I tried to use the debugger but I could not figure out how to use it to execute my script let alone pass the argument I need to it from the command line.
Thanks for any help!

#!/usr/bin/perl

use CGI;
use CGI::Carp qw(fatalsToBrowser);
$q = new CGI;

print $q->header;
    $q->start_html('Finger User');
    $q->h1('Finger User');
print "<pre>";

$user = $q->param("user");
print `/usr/bin/finger/ -s $user~`;

print "</pre>";
print $q->end_html;

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

最美不过初阳 2024-12-22 07:53:54

更改“;”在这些行中添加到 ',':

print $q->header,
    $q->start_html('Finger User'),
    $q->h1('Finger User');

并在末尾丢失 '/'

/usr/bin/finger

Change the ';' in these lines to ',':

print $q->header,
    $q->start_html('Finger User'),
    $q->h1('Finger User');

and lose the '/' at the end of

/usr/bin/finger
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文