Mercurial > ec-dotfiles
view bin/pwgen @ 518:5b06950f7d45
Default hg push of current working branch only.
author | edogawaconan <me@myconan.net> |
---|---|
date | Wed, 28 May 2014 17:17:37 +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