Skip to content

Instantly share code, notes, and snippets.

@soramugi
Created June 16, 2012 07:29
Show Gist options
  • Save soramugi/2940382 to your computer and use it in GitHub Desktop.
Save soramugi/2940382 to your computer and use it in GitHub Desktop.
タイトル取得
#! ruby -Ks
require 'uri'
require 'net/http'
require 'kconv'
url = ARGV[0]
title = Net::HTTP.get_response(URI.parse(url)).body.toutf8.scan(/<title>(.*)<\/title>/i)
puts title
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment