Help for this page

Select Code to Download


  1. or download this
    BEGIN {
        if ($^O =~ /^(MS)?Win/) {
    ...
            die $@ if $@;
        }
    }
    
  2. or download this
    if ( $^O =~ /^(MS)?Win/ )
    {
    ...
    {
        print "This is Linux OS!!!\n";
    }