File: wcat.rb

package info (click to toggle)
ruby-httpclient 2.8.3-3%2Bdeb10u1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 1,672 kB
  • sloc: ruby: 9,462; makefile: 8; sh: 2
file content (21 lines) | stat: -rw-r--r-- 393 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/usr/bin/env ruby

# wcat for http-access2
# Copyright (C) 2001 TAKAHASHI Masayoshi

$:.unshift(File.join('..', 'lib'))
require 'httpclient'

if ENV['HTTP_PROXY']
  h = HTTPClient.new(ENV['HTTP_PROXY'])
else
  h = HTTPClient.new()
end

while urlstr = ARGV.shift
  response = h.get(urlstr){ |data|
    print data
  }
  p response.contenttype
  p response.peer_cert if /^https/i =~ urlstr
end