Skip to content

Instantly share code, notes, and snippets.

@jamesbowles
jamesbowles / error_finder.rb
Last active May 6, 2016 02:32 — forked from jasonmadigan/404_finder.rb
Error Finder - Simple Ruby site crawler, finds non-200 response codes
#!/usr/bin/env ruby
# Simple non-200 finder, for finding errors and redirects
require 'rubygems'
require 'anemone'
url = ARGV[0]
if url.nil?