Mercurial > ec-dotfiles
view bin/pwgen @ 482:20521d872fab
Add irbrc to keep history of commands.
author | edogawaconan <me@myconan.net> |
---|---|
date | Tue, 24 Sep 2013 17:29:18 +0900 |
parents | 8956a404dba6 |
children | fea77cdcdb09 |
line wrap: on
line source
#!/usr/bin/env ruby require 'securerandom' 5.times do |n| puts "#{n}: #{SecureRandom.urlsafe_base64(12)}" end