1
0
Fork 0
mirror of https://github.com/nishiki/manage-password.git synced 2024-10-27 10:43:20 +00:00
mpw/mpw-ssh

57 lines
1.1 KiB
Text
Raw Normal View History

2013-08-06 20:24:09 +00:00
#!/usr/bin/ruby
# author: nishiki
# mail: nishiki@yaegashi.fr
# info: a simple script who manage your passwords
require 'rubygems'
require 'optparse'
2013-08-06 20:24:09 +00:00
require 'pathname'
2013-12-26 09:57:03 +00:00
require 'locale'
require 'i18n'
2013-08-06 20:24:09 +00:00
APP_ROOT = File.dirname(Pathname.new(__FILE__).realpath)
2013-09-04 17:48:06 +00:00
require "#{APP_ROOT}/lib/CliSSH.rb"
2013-08-06 20:24:09 +00:00
2013-12-26 09:57:03 +00:00
lang = Locale::Tag.parse(ENV['LANG']).to_simple.to_s[0..1]
if !File.exist?("#{APP_ROOT}/i18n/#{lang}.yml")
lang = 'en'
end
I18n.load_path = Dir["#{APP_ROOT}/i18n/#{lang}.yml"]
I18n.locale = lang.to_sym
2013-12-27 09:58:59 +00:00
cli = CliSSH.new(lang)
options = {}
OptionParser.new do |opts|
2013-12-26 17:18:10 +00:00
opts.banner = "#{I18n.t('ssh.option.usage')}: mpw-ssh SEARCH [options]"
2013-12-26 17:18:10 +00:00
opts.on("-l", "--login LOGIN", I18n.t('ssh.option.login')) do |login|
cli.login = login
end
2013-12-26 17:18:10 +00:00
opts.on("-s", "--server SERVER", I18n.t('ssh.option.server')) do |server|
cli.server = server
end
2013-12-26 17:18:10 +00:00
opts.on("-p", "--port PORT", I18n.t('ssh.option.port')) do |port|
cli.port = port
end
2013-12-26 17:18:10 +00:00
opts.on("-h", "--help", I18n.t('ssh.option.help')) do |b|
puts opts
exit 0
end
end.parse!
2013-12-26 17:20:15 +00:00
search = ARGV[0]
if ARGV.length < 1
2013-12-26 17:18:10 +00:00
puts "#{I18n.t('ssh.option.usage')}: mpw-ssh SEARCH [options]"
2013-08-06 20:24:09 +00:00
exit 2
end
cli.ssh(search)
exit 0