Perl 脚本返回值作为第二个 Perl 脚本的输入
我需要编写一个脚本 getPwd.pl($user)
来解析密码文件并返回特定用户的密码。
要解析的文件 (password.txt)
DEFINE ALICE = 'alice#1';
DEFINE BENICE = 'benice#1';
DEFINE CATHY = 'cathy#1';
第二个脚本 authUser.pl
必须调用 getPwd.pl($user)
并且返回的值将传递到第二个脚本进行身份验证一个用户。
模块不是一个选项,因为 getPwd.pl
将由不同的用户拥有,我将使用 sudo 来执行 getPwd.pl
。
请协助并提供一些有关如何解决此问题的指导。
I need to write a script getPwd.pl($user)
that parses a password file an returns the password for a particular user.
file to parse (password.txt)
DEFINE ALICE = 'alice#1';
DEFINE BENICE = 'benice#1';
DEFINE CATHY = 'cathy#1';
A second script authUser.pl
must call getPwd.pl($user)
and the returned value will be passed into the second script to authenticate a user.
Modules is not a option as the getPwd.pl
will be owned by a different user and I will be using sudo to execute getPwd.pl
.
Please assist and provide some guidance on how to go about this.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我同意整个系统应该得到修复。如果你可以执行 sudo 那么你肯定有能力解决问题!
然而,要回答实际问题,最好的办法是将 getPwd.pl 作为命令调用(而不是像上面所示的函数)。
然后将 $pwd 参数作为响应。
但是,如果您至少可以将另一个文件作为模块或源文件,那么情况会好得多。
I agree that the system, as a whole, should be fixed. And if you can execute sudo then you certainly have the ability to fix the problem!
However, to answer the actual question, the best thing to do would be to call getPwd.pl as a command (not as a function like you've shown above).
And then take the $pwd argument as the response.
However, if you can at least make the other file a module or a sourced file you'd be much better off.
您可以简单地打印从密码文件中提取的值,并使用反引号或 qx() 在授权脚本中捕获它。例如:
密码脚本可能很简单:
You can simply print the value extracted from the password file, and use backticks or
qx()
to capture it in the authorization script. E.g.:The password script might be something as simple as: