view bin/pwgen @ 511:ce21ebae61b4

Add /opt/local beforehand in sunos.
author edogawaconan <me@myconan.net>
date Sun, 16 Mar 2014 07:50:57 +0000
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