gpt4 book ai didi

perl - 如何在 Perl 中检测操作系统,然后有条件地执行命令?

转载 作者:行者123 更新时间:2023-12-01 00:15:21 24 4
gpt4 key购买 nike

在“How can I detect the operating system in Perl”上发现了这个问题——但我需要的是检测操作系统的 Perl 片段,然后使用该值来有条件地执行 OS-A 或 OS-B 的代码;在这种情况下,它们是 Windows7 和 CentOS-5.5。

问题、反馈、请求——只要评论,谢谢!!

最佳答案

您可以使用这样的调度表:

my %callback = (
MSWin32 => sub { win_code() },
linux => sub { linux_code() },
);

# run appropriate code
$callback{$^O}->();

关于perl - 如何在 Perl 中检测操作系统,然后有条件地执行命令?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5182163/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com