如何在远程计算机上执行 Perl 程序?
我编写了一个 Perl 程序,在 Linux 机器上使用控制台中的以下命令从 tail
命令捕获实时数据流:
tail -f xyz.log | myperl.pl
它工作正常。但现在我必须在另一台机器上执行这个 Perl 程序,因为日志文件位于另一台机器上。谁能告诉我该怎么做?
I wrote a Perl program to capture a live data stream from a tail
command on a Linux machine using the following command in the console:
tail -f xyz.log | myperl.pl
It works fine. But now I have to execute this Perl program on a different machine because the log file is on that different machine. Can anyone tell me how I can do it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以说
我想或者可以将远程日志目录本地安装到您的管理计算机上并在那里进行处理。
You could say
I suppose or maybe mount the remote log directories locally onto your administrative machine and do the processing there.
或者您甚至可以说
为了在远程计算机上运行脚本(如果您的脚本生成一些输出文件并且您希望它们在远程计算机上)
Or you could even say
in order to run the script on the remote machine (if your script produces some output files and you want them on remote machine)