Skip to content

Instantly share code, notes, and snippets.

@rono23
rono23 / dl.rb
Created May 30, 2016 00:32 — forked from uu59/dl.rb
#!/usr/bin/env ruby
percent = (ENV["D"] || "50").to_i
content = ARGF.read
if STDOUT.tty?
print content.chars.map{|c| next c unless c.match(/[\x20-\x7f]/); rand(1..100) <= percent ? " " : c}.join
else
print content
end