# File raggle, line 440
    def Path::find_browser
      ret = ENV['RAGGLE_BROWSER']
      ret ||= ENV['BROWSER']
      ret ||= %w{links elinks w3m lynx iexplore.exe explorer.exe}.find { |app| find_app(app) }

      # die if we couldn't find a browser
      die "Couldn't find suitable browser.",
          "Please set $RAGGLE_BROWSER, $BROWSER, or install one of the following",
          "console browsers: ELinks, Links, Lynx. or W3M." unless ret

      # return browser
      ret
    end