欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

ruby写扫描当前网页所有url的脚本

程序员文章站 2022-07-04 23:28:28
#scanweb.rb #用法ruby scanweb.rb www.jb51.net 将当前结果保存在c:\1.txt require 'n...
#scanweb.rb

#用法ruby scanweb.rb www.jb51.net 将当前结果保存在c:\1.txt

require 'net/http'
filename= file.new('c:\1.txt',"w+")
if $*[0]==nil 
puts "hehe,没有输入网址"
else
h = net::http.new($*[0], 80)
resp, data = h.get('/index.html', nil)
if resp.message == "ok"
data.scan(/<a href="(.*?)"/).each do |x|
puts x
filename.puts x
end
end
end

#无聊,有vbs、php、ruby版了,好像ruby比vbs快,与php不相上下。

=begin

修改一下

require 'net/http'
filename= file.new('1.txt',"w+")
if $*[0]==nil 
abort "用法示例:ruby #$0 www.sohu.com ,结果放在当前目录1.txt" 
end

h = net::http.new($*[0], 80)

resp, data = h.get('/index.html', nil)
if resp.message == "ok"
data.scan(/<a href="(.*?)"/).each do |x|
puts x
filename.puts x
end
end

=end