Help for this page

Select Code to Download


  1. or download this
    if($user_wants_to_save && ! $location_specified){
        $save_location = ask_user_for_save_location();
    }else{
        $save_location = $location_specified;
    }
    
  2. or download this
    GetOptions(
        's|save_to:s' => \$user_wants{CUSTOM_SAVE_PLACE},
    );