Help for this page

Select Code to Download


  1. or download this
    #Match $requestedApp to an executable path.
    foreach $appkey (keys(%apps)){
        if ($appkey eq $requestedApp){
    ...
            break;
        }
    }
    
  2. or download this
    $requestedAppPath = $apps{$requestedApp};