view bin/pwgen @ 567:18cad636d1a2

0paste.tk is now https-only.
author nanaya <me@myconan.net>
date Sat, 13 Jun 2015 08:40:58 +0900
parents fea77cdcdb09
children bdc9eddf3743
line wrap: on
line source

#!/usr/bin/env ruby

require 'securerandom'

length = ARGV[0].to_i
length = 12 if length <= 0
5.times do |n|
  puts "#{n}: #{SecureRandom.urlsafe_base64(length).slice(0, length)}"
end