2016-10-12 21:23:03 +00:00
|
|
|
# MPW is a software to crypt and manage your passwords
|
2017-04-20 21:22:56 +00:00
|
|
|
# Copyright (C) 2017 Adrien Waksberg <mpw@yae.im>
|
2017-03-27 20:18:17 +00:00
|
|
|
#
|
2016-10-12 21:23:03 +00:00
|
|
|
# This program is free software; you can redistribute it and/or
|
|
|
|
# modify it under the terms of the GNU General Public License
|
|
|
|
# as published by the Free Software Foundation; either version 2
|
|
|
|
# of the License, or (at your option) any later version.
|
2017-03-27 20:18:17 +00:00
|
|
|
#
|
2016-10-12 21:23:03 +00:00
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
2017-03-27 20:18:17 +00:00
|
|
|
#
|
2016-10-12 21:23:03 +00:00
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this program; if not, write to the Free Software
|
|
|
|
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
|
|
|
|
require 'optparse'
|
|
|
|
require 'mpw/mpw'
|
|
|
|
|
|
|
|
options = {}
|
|
|
|
|
|
|
|
OptionParser.new do |opts|
|
2017-03-27 20:18:17 +00:00
|
|
|
opts.banner = "#{I18n.t('option.usage')}: mpw passwd [options]"
|
2016-10-12 21:23:03 +00:00
|
|
|
|
2017-03-27 20:18:17 +00:00
|
|
|
opts.on('-h', '--help', I18n.t('option.help')) do
|
|
|
|
puts opts
|
|
|
|
exit 0
|
|
|
|
end
|
2016-10-12 21:23:03 +00:00
|
|
|
|
2017-03-27 20:18:17 +00:00
|
|
|
opts.on('-l', '--length NUMBER', I18n.t('option.length')) do |length|
|
|
|
|
options[:length] = length.to_i
|
|
|
|
end
|
2016-10-12 21:23:03 +00:00
|
|
|
|
2017-03-27 20:18:17 +00:00
|
|
|
opts.on('-n', '--numeric', I18n.t('option.numeric')) do
|
|
|
|
options[:numeric] = true
|
|
|
|
end
|
2016-10-12 21:23:03 +00:00
|
|
|
|
2017-03-27 20:18:17 +00:00
|
|
|
opts.on('-s', '--special-chars', I18n.t('option.special_chars')) do
|
|
|
|
options[:special] = true
|
|
|
|
end
|
2016-10-12 21:23:03 +00:00
|
|
|
|
2017-03-27 20:18:17 +00:00
|
|
|
opts.on('-a', '--alpha', I18n.t('option.alpha')) do
|
|
|
|
options[:alpha] = true
|
|
|
|
end
|
2016-10-12 21:23:03 +00:00
|
|
|
end.parse!
|
|
|
|
|
2017-03-28 20:56:23 +00:00
|
|
|
puts MPW::MPW.password(options)
|
2016-10-12 21:23:03 +00:00
|
|
|
exit 0
|