view bin/pwgen @ 645:7e4b3136f55e

More histories and copypaste
author nanaya <me@nanaya.pro>
date Wed, 16 Sep 2020 14:19:54 +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