Help for this page

Select Code to Download


  1. or download this
    $foo_path = ('/mnt/foo') if ($^O eq "linux");
    $foo_path = ('\\\C:\foo.exe') if (($^O =~ /mswin32|nt/i));
    
  2. or download this
    if undef ($foo_path) {
       print "\nFOO was not intended to run on OS:$^0\n"
       exit;
    }