Windows 上的 Perl 的集群()在哪里?
我有一个 Perl 脚本,想在 Windows 上运行,使用 Strawberry Perl 或 ActivePerl; 我不在乎哪个。 然而,该脚本使用了 flock()
调用,该调用似乎并未包含在这两个版本的 Perl 中。
任何人都可以帮助启动并运行它吗?
I have a Perl script that I'd like to run on Windows, using either Strawberry Perl or ActivePerl; I don't care which. This script however, uses flock()
calls, which does not seem to be included in either of those versions of Perl.
Can anyone help get this up and running?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
是否安装了Fcntl模块? 试试这个:
如果它抱怨,你没有安装 Fcntl 模块。 如果它没有抱怨,那么您就可以访问 Fcntl::flock,因此将其放入您的脚本中:
然后就可以了。
Is the Fcntl module installed? Try this:
If it complains, you don't have the Fcntl module installed. If it doesn't complain, then you have access to Fcntl::flock, so put this in your script:
and off you go.
尝试使用 perldoc -f flock 来检查是否支持和支持这些内容。 然后查看给定的示例以了解该函数的使用标准。 这里是从 perldoc 复制的:
C:>perldoc -f集群
Try using perldoc -f flock to check the things are supported & then look into the given example to know the usage criteria of the function. Here copied from the perldoc:
C:>perldoc -f flock