oputil_help; correct references to optutil

This commit is contained in:
Mike Ralphson 2018-11-25 13:59:12 +00:00 committed by GitHub
parent dfcf98f17d
commit 546fbbd533
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 4 deletions

View File

@ -8,7 +8,7 @@ exports.getHelpFor = getHelpFor;
const usageHelp = exports.USAGE_HELP = {
General :
`usage: optutil.js [--version] [--help]
`usage: oputil.js [--version] [--help]
<command> [<args>]
global args:
@ -21,7 +21,7 @@ commands:
fb file base management
`,
User :
`usage: optutil.js user --user USERNAME <args>
`usage: oputil.js user --user USERNAME <args>
valid args:
--user USERNAME specify username for further actions
@ -32,7 +32,7 @@ valid args:
`,
Config :
`usage: optutil.js config <action> [<args>]
`usage: oputil.js config <action> [<args>]
actions:
new generate a new/initial configuration
@ -97,4 +97,4 @@ general information:
function getHelpFor(command) {
return usageHelp[command];
}
}