Help for this page

Select Code to Download


  1. or download this
    die "FOO was not intended to run on OS $^O\n"
      unless defined($foo_path);
    
  2. or download this
    given ($^O) {
      when (/linux/)      { $file_path = '/mnt/foo' }
      when (/mswin32|nt/) { $file_path = '\\\C:\foo.exe' }
      default { die "FOO was not intended..." }
    }