Skip to content

Instantly share code, notes, and snippets.

@andrewjmead
Last active January 25, 2016 00:08
Show Gist options
  • Save andrewjmead/f3540895ed30baaf60cc to your computer and use it in GitHub Desktop.
Save andrewjmead/f3540895ed30baaf60cc to your computer and use it in GitHub Desktop.
Adding masterPassword to get command
command('get', 'Get an existing account', function (yargs) {
yargs.options({
name: {
demand: true,
alias: 'n',
description: 'Account name (eg: Twitter, Facebook)',
type: 'string'
},
masterPassword: {
demand: true,
alias: 'm',
description: 'Master password',
type: 'string'
}
}).help('help');
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment