Help for this page

Select Code to Download


  1. or download this
    my $OSTY;
    if (not exists $ENV{OSTYPE}) {
    ...
    } else {
        $OSTY = $ENV{OSTYPE}
    };
    
  2. or download this
    print "Running under $^O";
    
  3. or download this
    my $OSTY;
    if (not exists $ENV{OSTYPE}) {
    ...
    } else {
        $OSTY = $ENV{OSTYPE}
    };