Mercurial > ec-dotfiles
view bin/pwgen @ 493:1ad9091c464e
Properly set window name for vim.
author | edogawaconan <me@myconan.net> |
---|---|
date | Sat, 09 Nov 2013 17:28:20 +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