How can I detect the operating system in Perl?

后端 未结 11 1458
我在风中等你
我在风中等你 2020-12-04 16:41

I have Perl on Mac, Windows and Ubuntu. How can I tell from within the script which one is which? Thanks in advance.

Edit: I was asked what I am doi

11条回答
  •  無奈伤痛
    2020-12-04 16:59

    Here's a quick reference on how to find the OS the local machine is running from Perl.

    The $^O variable ($OSTYPE if you use English) contains the operating system that your perl binary was built for.

提交回复
热议问题