mirror of
https://github.com/vvsviridov/enm-cli.git
synced 2025-10-23 08:22:21 +00:00
27 lines
875 B
JavaScript
Executable File
27 lines
875 B
JavaScript
Executable File
const mainHelp = [
|
|
'',
|
|
'show [<valid regex>] - shows current object\'s attributes filtered with regex',
|
|
'config - enters config mode',
|
|
'up - navigate up one level',
|
|
'fdn [<valid FDN>] - navigate to FDN',
|
|
'home - navigate to root folder',
|
|
'alarms - show alarms',
|
|
'sync - initiate node CM synchronization',
|
|
'search - searching for specified nodes',
|
|
'persistent - toggle persistent attributes inclusion',
|
|
'exit - logout and exit application',
|
|
].join('\n')
|
|
|
|
const configHelp = [
|
|
'',
|
|
'set - set attribute\'s value',
|
|
'get - get attribute\'s value',
|
|
'commit - commiting changes to the network',
|
|
'description - show attribute\'s description',
|
|
'check - view configuration changes',
|
|
'end - exit config mode without commiting',
|
|
'exit - logout and exit application',
|
|
].join('\n')
|
|
|
|
|
|
module.exports = { mainHelp, configHelp } |