@webos-tools/cli 3.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.eslintignore +1 -0
- package/.eslintrc.js +52 -0
- package/APIs.js +79 -0
- package/CHANGELOG.md +110 -0
- package/LICENSE +201 -0
- package/README.md +218 -0
- package/bin/ares-config.js +199 -0
- package/bin/ares-device-info.js +30 -0
- package/bin/ares-device.js +219 -0
- package/bin/ares-generate.js +270 -0
- package/bin/ares-inspect.js +179 -0
- package/bin/ares-install.js +223 -0
- package/bin/ares-launch.js +318 -0
- package/bin/ares-log.js +255 -0
- package/bin/ares-novacom.js +223 -0
- package/bin/ares-package.js +336 -0
- package/bin/ares-pull.js +156 -0
- package/bin/ares-push.js +155 -0
- package/bin/ares-server.js +174 -0
- package/bin/ares-setup-device.js +520 -0
- package/bin/ares-shell.js +132 -0
- package/bin/ares.js +166 -0
- package/files/conf/ares.json +49 -0
- package/files/conf/command-service.json +73 -0
- package/files/conf/config.json +22 -0
- package/files/conf/ipk.json +30 -0
- package/files/conf/novacom-devices.json +35 -0
- package/files/conf/query/query-app.json +14 -0
- package/files/conf/query/query-hosted.json +18 -0
- package/files/conf/query/query-package.json +10 -0
- package/files/conf/query/query-service.json +6 -0
- package/files/conf/sdk.json +8 -0
- package/files/conf/template.json +57 -0
- package/files/conf/webos_emul +27 -0
- package/files/conf-base/env/sdk-ose.json +8 -0
- package/files/conf-base/env/sdk-tv.json +8 -0
- package/files/conf-base/profile/config-ose.json +21 -0
- package/files/conf-base/profile/config-tv.json +22 -0
- package/files/conf-base/query/query-app.json +14 -0
- package/files/conf-base/query/query-hosted.json +18 -0
- package/files/conf-base/query/query-package.json +10 -0
- package/files/conf-base/query/query-service.json +6 -0
- package/files/conf-base/template-conf/ose-templates.json +67 -0
- package/files/conf-base/template-conf/tv-sdk-templates.json +57 -0
- package/files/help/ares-config.help +43 -0
- package/files/help/ares-device.help +94 -0
- package/files/help/ares-generate.help +65 -0
- package/files/help/ares-inspect.help +70 -0
- package/files/help/ares-install.help +90 -0
- package/files/help/ares-launch.help +100 -0
- package/files/help/ares-log-pmlogd.help +84 -0
- package/files/help/ares-log.help +101 -0
- package/files/help/ares-novacom.help +68 -0
- package/files/help/ares-package.help +101 -0
- package/files/help/ares-pull.help +38 -0
- package/files/help/ares-push.help +38 -0
- package/files/help/ares-server.help +39 -0
- package/files/help/ares-setup-device.help +75 -0
- package/files/help/ares-shell.help +42 -0
- package/files/help/ares.help +47 -0
- package/files/help/readme.help +23 -0
- package/files/schema/ApplicationDescription.schema +319 -0
- package/files/schema/NovacomDevices.schema +61 -0
- package/files/templates/ose-sdk-templates/appinfo/appinfo.json +10 -0
- package/files/templates/ose-sdk-templates/bootplate-web/index.html +88 -0
- package/files/templates/ose-sdk-templates/hosted-webapp/index.html +14 -0
- package/files/templates/ose-sdk-templates/icon/icon.png +0 -0
- package/files/templates/ose-sdk-templates/js-service/helloclient.js +31 -0
- package/files/templates/ose-sdk-templates/js-service/helloworld_webos_service.js +188 -0
- package/files/templates/ose-sdk-templates/qml-app/main.qml +68 -0
- package/files/templates/ose-sdk-templates/qmlappinfo/appinfo.json +10 -0
- package/files/templates/ose-sdk-templates/serviceinfo/package.json +11 -0
- package/files/templates/ose-sdk-templates/serviceinfo/services.json +8 -0
- package/files/templates/tv-sdk-templates/appinfo/appinfo.json +10 -0
- package/files/templates/tv-sdk-templates/bootplate-web/index.html +58 -0
- package/files/templates/tv-sdk-templates/bootplate-web/webOSTVjs-1.2.4/LICENSE-2.0.txt +202 -0
- package/files/templates/tv-sdk-templates/bootplate-web/webOSTVjs-1.2.4/webOSTV-dev.js +1 -0
- package/files/templates/tv-sdk-templates/bootplate-web/webOSTVjs-1.2.4/webOSTV.js +1 -0
- package/files/templates/tv-sdk-templates/hosted-webapp/index.html +14 -0
- package/files/templates/tv-sdk-templates/js-service/helloworld_service.js +37 -0
- package/files/templates/tv-sdk-templates/packageinfo/packageinfo.json +4 -0
- package/files/templates/tv-sdk-templates/serviceinfo/package.json +11 -0
- package/files/templates/tv-sdk-templates/serviceinfo/services.json +8 -0
- package/files/templates/tv-sdk-templates/webicon/icon.png +0 -0
- package/files/templates/tv-sdk-templates/webicon/largeIcon.png +0 -0
- package/lib/base/ares.html +40 -0
- package/lib/base/cli-appdata.js +289 -0
- package/lib/base/cli-control.js +44 -0
- package/lib/base/common-tools.js +29 -0
- package/lib/base/error-handler.js +265 -0
- package/lib/base/file-watcher.js +155 -0
- package/lib/base/help-format.js +147 -0
- package/lib/base/luna.js +178 -0
- package/lib/base/novacom.js +1191 -0
- package/lib/base/sdkenv.js +59 -0
- package/lib/base/server.js +137 -0
- package/lib/base/setup-device.js +324 -0
- package/lib/base/version-tools.js +79 -0
- package/lib/com.sdk.ares.hostedapp.ipk +0 -0
- package/lib/device.js +1419 -0
- package/lib/generator.js +377 -0
- package/lib/inspect.js +494 -0
- package/lib/install.js +463 -0
- package/lib/launch.js +605 -0
- package/lib/log.js +584 -0
- package/lib/package.js +2129 -0
- package/lib/pull.js +231 -0
- package/lib/pusher.js +210 -0
- package/lib/session.js +74 -0
- package/lib/shell.js +193 -0
- package/lib/tar-filter-pack.js +62 -0
- package/lib/util/copy.js +31 -0
- package/lib/util/createFileName.js +40 -0
- package/lib/util/eof.js +30 -0
- package/lib/util/json.js +63 -0
- package/lib/util/merge.js +14 -0
- package/lib/util/objclone.js +40 -0
- package/lib/util/spinner.js +37 -0
- package/npm-shrinkwrap.json +85 -0
- package/package.json +98 -0
- package/spec/helpers/reporter.js +65 -0
- package/spec/jsSpecs/apiTest/generator.spec.js +372 -0
- package/spec/jsSpecs/apiTest/inspector.spec.js +89 -0
- package/spec/jsSpecs/apiTest/installer.spec.js +67 -0
- package/spec/jsSpecs/apiTest/launcher.spec.js +150 -0
- package/spec/jsSpecs/apiTest/packager.spec.js +194 -0
- package/spec/jsSpecs/apiTest/puller.spec.js +101 -0
- package/spec/jsSpecs/apiTest/pusher.spec.js +103 -0
- package/spec/jsSpecs/apiTest/server.spec.js +115 -0
- package/spec/jsSpecs/apiTest/setupDevice.spec.js +93 -0
- package/spec/jsSpecs/apiTest/shell.spec.js +49 -0
- package/spec/jsSpecs/ares-config.spec.js +78 -0
- package/spec/jsSpecs/ares-device.spec.js +443 -0
- package/spec/jsSpecs/ares-generate.spec.js +397 -0
- package/spec/jsSpecs/ares-inspect.spec.js +252 -0
- package/spec/jsSpecs/ares-install.spec.js +150 -0
- package/spec/jsSpecs/ares-launch.spec.js +301 -0
- package/spec/jsSpecs/ares-log.spec.js +824 -0
- package/spec/jsSpecs/ares-novacom.spec.js +149 -0
- package/spec/jsSpecs/ares-package.spec.js +1211 -0
- package/spec/jsSpecs/ares-pull.spec.js +157 -0
- package/spec/jsSpecs/ares-push.spec.js +146 -0
- package/spec/jsSpecs/ares-server.spec.js +160 -0
- package/spec/jsSpecs/ares-setup-device.spec.js +281 -0
- package/spec/jsSpecs/ares-shell.spec.js +220 -0
- package/spec/jsSpecs/ares.spec.js +83 -0
- package/spec/jsSpecs/common-spec.js +169 -0
- package/spec/support/jasmine.json +22 -0
- package/spec/tempFiles/com.jasmine.native.app_0.0.1_arm.ipk +0 -0
- package/spec/tempFiles/com.jasmine.native.app_0.0.1_x86.ipk +0 -0
- package/spec/tempFiles/com.jasmine.web.app_0.0.1_all.ipk +0 -0
- package/spec/tempFiles/com.logtest.web.app_1.0.0_all.ipk +0 -0
- package/spec/tempFiles/copyFiles/helloFile.txt +1 -0
- package/spec/tempFiles/copyFiles/testFile.txt +1 -0
- package/spec/tempFiles/ipks/com.sample.echo_0.0.1_all.ipk +0 -0
- package/spec/tempFiles/ipks/com.web.app_1.0.0_all.ipk +0 -0
- package/spec/tempFiles/nativeApp/auto/pkg_arm64/GLES2 +0 -0
- package/spec/tempFiles/nativeApp/auto/pkg_arm64/appinfo.json +9 -0
- package/spec/tempFiles/nativeApp/auto/pkg_arm64/icon.png +0 -0
- package/spec/tempFiles/nativeApp/auto/pkg_arm64/largeIcon.png +0 -0
- package/spec/tempFiles/nativeApp/ose/pkg_arm/Hello +0 -0
- package/spec/tempFiles/nativeApp/ose/pkg_arm/appinfo.json +9 -0
- package/spec/tempFiles/nativeApp/ose/pkg_arm/icon.png +0 -0
- package/spec/tempFiles/nativeApp/ose/pkg_arm/largeIcon.png +0 -0
- package/spec/tempFiles/nativeApp/ose/pkg_arm/package.properties +2 -0
- package/spec/tempFiles/nativeApp/oseEmul/pkg_x86/Hello +0 -0
- package/spec/tempFiles/nativeApp/oseEmul/pkg_x86/appinfo.json +9 -0
- package/spec/tempFiles/nativeApp/oseEmul/pkg_x86/icon.png +0 -0
- package/spec/tempFiles/nativeApp/oseEmul/pkg_x86/largeIcon.png +0 -0
- package/spec/tempFiles/nativeApp/rsi/pkg_x86/GLES2 +0 -0
- package/spec/tempFiles/nativeApp/rsi/pkg_x86/appinfo.json +9 -0
- package/spec/tempFiles/nativeApp/rsi/pkg_x86/icon.png +0 -0
- package/spec/tempFiles/nativeApp/rsi/pkg_x86/largeIcon.png +0 -0
- package/spec/tempFiles/sign/sign.crt +32 -0
- package/spec/tempFiles/sign/signPriv.key +52 -0
- package/spec/test_data/ares-generate.json +41 -0
- package/spec/test_data/ares.json +33 -0
|
@@ -0,0 +1,84 @@
|
|
|
1
|
+
{
|
|
2
|
+
"display" : ["name", "synopsis", "options", "description", "examples"],
|
|
3
|
+
"notab":["examples"],
|
|
4
|
+
"name" : "ares-log(pmlogd) - Show or save logs of webOS apps and service",
|
|
5
|
+
"synopsis" : {
|
|
6
|
+
"default" : [
|
|
7
|
+
"ares-log [OPTION...]",
|
|
8
|
+
"ares-log [OPTION...] -f, --follow",
|
|
9
|
+
"ares-log [OPTION...] -n, --lines <LINE>"
|
|
10
|
+
]
|
|
11
|
+
},
|
|
12
|
+
"description" : [
|
|
13
|
+
"This command shows or saves logs of webOS apps and services using pmlogd.",
|
|
14
|
+
"",
|
|
15
|
+
"** Attributes **",
|
|
16
|
+
"LINE [integer] Number of lines to show",
|
|
17
|
+
"LOGGING_DAEMON [string] Name of logging daemon (e.g., pmlogd, journald)",
|
|
18
|
+
"ID [string] ID of app or service",
|
|
19
|
+
"SAVED_FILE [string] File name or path to save logs",
|
|
20
|
+
"CONTEXT [string] Name of context",
|
|
21
|
+
"CONTEXT_LEVEL [string] Priority of specific context logs (e.g., info, notice, warning, err)",
|
|
22
|
+
"LEVEL [string] Priority of CLI logs (e.g., silly, verbose, info, warn, error)"
|
|
23
|
+
],
|
|
24
|
+
"examples" : [
|
|
25
|
+
"# Check the current logging daemon",
|
|
26
|
+
"ares-log -cd -d DEVICE",
|
|
27
|
+
"",
|
|
28
|
+
"# Change the current logging daemon to journald",
|
|
29
|
+
"ares-log -sd journald -d DEVICE",
|
|
30
|
+
"",
|
|
31
|
+
"# Follow pmlog",
|
|
32
|
+
"ares-log -f -d DEVICE",
|
|
33
|
+
"",
|
|
34
|
+
"# Set the number of pmlog entries to show",
|
|
35
|
+
"ares-log -n 10 -d DEVICE",
|
|
36
|
+
"",
|
|
37
|
+
"# Follow logs and save them to a log file",
|
|
38
|
+
"ares-log -f -s follow.log -d DEVICE",
|
|
39
|
+
"",
|
|
40
|
+
"# Follow logs of an app",
|
|
41
|
+
"ares-log -f -id com.examples.app -d DEVICE",
|
|
42
|
+
"",
|
|
43
|
+
"# Follow logs of a service and save them to a log file",
|
|
44
|
+
"ares-log -f -id com.examples.app.service -s service.log -d DEVICE",
|
|
45
|
+
"",
|
|
46
|
+
"# Show context list on DEVICE",
|
|
47
|
+
"ares-log -cl -d DEVICE",
|
|
48
|
+
"",
|
|
49
|
+
"# Set the log level for a specific context to debug",
|
|
50
|
+
"ares-log -sl WAM debug -d DEVICE"
|
|
51
|
+
],
|
|
52
|
+
"options" : {
|
|
53
|
+
"cmdOpt":"option",
|
|
54
|
+
"default" : ["current-daemon", "switch-daemon", "id-filter", "save", "context-list", "set-level", "device", "device-list", "help", "version", "verbose", "level"],
|
|
55
|
+
"current-daemon" : [
|
|
56
|
+
"-cd, --current-daemon @TAB@ \tCheck the current logging daemon of CLI and the target device"
|
|
57
|
+
],
|
|
58
|
+
"switch-daemon" : [
|
|
59
|
+
"-sd, --switch-daemon <LOGGING_DAEMON> @TAB@ \tChange the current logging daemon of CLI to LOGGING_DAEMON"
|
|
60
|
+
],
|
|
61
|
+
"id-filter" : [
|
|
62
|
+
"-id, --id-filter <ID> @TAB@ \tShow logs of the ID"
|
|
63
|
+
],
|
|
64
|
+
"save" : [
|
|
65
|
+
"-s, --save <SAVED_FILE> @TAB@ \tSave logs to SAVED_FILE",
|
|
66
|
+
"@TAB@ \tMust use it with the options outputting logs"
|
|
67
|
+
],
|
|
68
|
+
"context-list" : [
|
|
69
|
+
"-cl, --context-list @TAB@ \tList the contexts and those log level"
|
|
70
|
+
],
|
|
71
|
+
"set-level" : [
|
|
72
|
+
"-sl, --set-level <CONTEXT> <CONTEXT_LEVEL> @TAB@Set the log level of CONTEXT to CONTEXT_LEVEL"
|
|
73
|
+
],
|
|
74
|
+
"device" : [
|
|
75
|
+
"-d, --device <DEVICE> @TAB@ \tSpecify DEVICE to use",
|
|
76
|
+
"@TAB@ \tIf not specified, set to default device"
|
|
77
|
+
],
|
|
78
|
+
"device-list" : "-D, --device-list @TAB@ \tList the available DEVICEs",
|
|
79
|
+
"help" : "-h, --help @TAB@ \tDisplay this help",
|
|
80
|
+
"version" : "-V, --version @TAB@ \tDisplay version info",
|
|
81
|
+
"verbose" : "-v @TAB@ \tDisplay this verbose log",
|
|
82
|
+
"level" : "--level <LEVEL> @TAB@ \tSet log LEVEL and display log as set LEVEL"
|
|
83
|
+
}
|
|
84
|
+
}
|
|
@@ -0,0 +1,101 @@
|
|
|
1
|
+
{
|
|
2
|
+
"display" : ["name", "synopsis", "options", "description", "examples"],
|
|
3
|
+
"notab":["examples"],
|
|
4
|
+
"name" : "ares-log(journald) - Show or save logs of webOS apps and services",
|
|
5
|
+
"synopsis" : {
|
|
6
|
+
"default" : [
|
|
7
|
+
"ares-log [OPTION...]",
|
|
8
|
+
"ares-log [OPTION...] -f, --follow",
|
|
9
|
+
"ares-log [OPTION...] -r, --reverse",
|
|
10
|
+
"ares-log [OPTION...] -n, --lines <LINE>",
|
|
11
|
+
"",
|
|
12
|
+
"ares-log [OPTION...] -b, --boot",
|
|
13
|
+
"ares-log [OPTION...] -k, --dmesg",
|
|
14
|
+
"ares-log [OPTION...] -p, --priority <PRIORITY>",
|
|
15
|
+
"ares-log [OPTION...] -pid, --pid <PID>",
|
|
16
|
+
"ares-log [OPTION...] -S, --since <DATE>",
|
|
17
|
+
"ares-log [OPTION...] -U, --until <DATE>",
|
|
18
|
+
"",
|
|
19
|
+
"ares-log [OPTION...] -ul, --unit-list",
|
|
20
|
+
"ares-log [OPTION...] -u, --unit <UNIT>",
|
|
21
|
+
"",
|
|
22
|
+
"ares-log [OPTION...] -fl, --file-list",
|
|
23
|
+
"ares-log [OPTION...] -file, --file <JOURNAL_FILE>"
|
|
24
|
+
]
|
|
25
|
+
},
|
|
26
|
+
"description" : [
|
|
27
|
+
"This command shows or saves logs of webOS apps and services using journald",
|
|
28
|
+
"",
|
|
29
|
+
"** Attributes **",
|
|
30
|
+
"LINE [integer] Number of lines to show",
|
|
31
|
+
"PRIORITY [string] Priority of logs (e.g., info, notice, warning, err)",
|
|
32
|
+
"PID [integer] Process ID",
|
|
33
|
+
"DATE [string] Date format (e.g., YYYY-MM-DD hh:mm:ss)",
|
|
34
|
+
"UNIT [string] One of the unit names from --unit-list",
|
|
35
|
+
"JOURNAL_FILE [string] One of the file names from --file-list",
|
|
36
|
+
"LOGGING_DAEMON [string] Name of logging daemon (e.g., journald, pmlogd)",
|
|
37
|
+
"OUTPUT_MODE [string] Output format (e.g., json, json-pretty, cat)",
|
|
38
|
+
"SAVED_FILE [string] File name or path to save logs",
|
|
39
|
+
"LEVEL [string] Priority of CLI logs (e.g., silly, verbose, info, warn, error)"
|
|
40
|
+
],
|
|
41
|
+
"examples" : [
|
|
42
|
+
"# Check the current logging daemon",
|
|
43
|
+
"ares-log -cd -d DEVICE",
|
|
44
|
+
"",
|
|
45
|
+
"# Change the current logging daemon to pmlogd",
|
|
46
|
+
"ares-log -sd pmlogd -d DEVICE",
|
|
47
|
+
"",
|
|
48
|
+
"# Follow journal",
|
|
49
|
+
"ares-log -f -d DEVICE",
|
|
50
|
+
"",
|
|
51
|
+
"# Number of journal entries to show",
|
|
52
|
+
"ares-log -n 10 -d DEVICE",
|
|
53
|
+
"",
|
|
54
|
+
"# Show logs between the two DATEs",
|
|
55
|
+
"ares-log -S 2021-03-18 21:38:00 --until 2021-03-18 21:39:00 -d DEVICE",
|
|
56
|
+
"",
|
|
57
|
+
"# Show a list of the stored journal files",
|
|
58
|
+
"ares-log -fl -d DEVICE",
|
|
59
|
+
"",
|
|
60
|
+
"# Show stored logs from system.journal in the JSON format",
|
|
61
|
+
"ares-log -file system.journal -o json -d DEVICE",
|
|
62
|
+
"",
|
|
63
|
+
"# Show logs of specified process ID and save them to a log file",
|
|
64
|
+
"ares-log -pid 1735 -s pid_1735.log -d DEVICE",
|
|
65
|
+
"",
|
|
66
|
+
"# Show logs of specified unit",
|
|
67
|
+
"ares-log -u sam -d DEVICE",
|
|
68
|
+
""
|
|
69
|
+
],
|
|
70
|
+
"options" : {
|
|
71
|
+
"cmdOpt":"option",
|
|
72
|
+
"default" : ["current-daemon", "switch-daemon", "output", "save", "display", "device", "device-list", "help", "version", "verbose", "level"],
|
|
73
|
+
"current-daemon" : [
|
|
74
|
+
"-cd, --current-daemon @TAB@ Check the current logging daemon of CLI and the target device"
|
|
75
|
+
],
|
|
76
|
+
"switch-daemon" : [
|
|
77
|
+
"-sd, --switch-daemon <LOGGING_DAEMON> @TAB@ Change the current logging daemon of CLI to LOGGING_DAEMON"
|
|
78
|
+
],
|
|
79
|
+
"output" : [
|
|
80
|
+
"-o, --output <OUTPUT_MODE> @TAB@ Change logs format to OUTPUT_MODE",
|
|
81
|
+
"@TAB@ Must use it with the options outputting logs"
|
|
82
|
+
],
|
|
83
|
+
"save" : [
|
|
84
|
+
"-s, --save <SAVED_FILE> @TAB@ Save logs to SAVED_FILE",
|
|
85
|
+
"@TAB@ Must use it with the options outputting logs"
|
|
86
|
+
],
|
|
87
|
+
"display" : [
|
|
88
|
+
"-dp, --display <DISPLAY_ID> @TAB@ Specify DISPLAY_ID to use",
|
|
89
|
+
"@TAB@ Must use with the unit and unit-list options"
|
|
90
|
+
],
|
|
91
|
+
"device" : [
|
|
92
|
+
"-d, --device <DEVICE> @TAB@ Specify DEVICE to use",
|
|
93
|
+
"@TAB@ If not specified, set to default device"
|
|
94
|
+
],
|
|
95
|
+
"device-list" : "-D, --device-list @TAB@ List the available DEVICEs",
|
|
96
|
+
"help" : "-h, --help @TAB@ Display this help",
|
|
97
|
+
"version" : "-V, --version @TAB@ Display version info",
|
|
98
|
+
"verbose" : "-v @TAB@ Display this verbose log",
|
|
99
|
+
"level" : "--level <LEVEL> @TAB@ Set log LEVEL and display log as set LEVEL"
|
|
100
|
+
}
|
|
101
|
+
}
|
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
{
|
|
2
|
+
"display" : ["name", "synopsis", "options", "extraoption", "description", "examples", "extraexample"],
|
|
3
|
+
"notab":["examples", "extraexample"],
|
|
4
|
+
"notitle" : ["extraoption", "extraexample"],
|
|
5
|
+
"name" : "ares-novacom - Command Line Tool to control the device",
|
|
6
|
+
"synopsis" : {
|
|
7
|
+
"default" : [
|
|
8
|
+
"ares-novacom [OPTION...] -r, --run <DEVICE_COMMAND>",
|
|
9
|
+
"ares-novacom [OPTION...] -f, --forward --port, -p <DEVICE_PORT1>[:<HOST_PORT1>] --port, -p <DEVICE_PORT2>[:<HOST_PORT2>][...]",
|
|
10
|
+
"ares-novacom [OPTION...] -k, --getkey"
|
|
11
|
+
]
|
|
12
|
+
},
|
|
13
|
+
"description" : [
|
|
14
|
+
{
|
|
15
|
+
"default": [
|
|
16
|
+
"This command has miscellaneous functions.",
|
|
17
|
+
"",
|
|
18
|
+
"'getkey' option gets a ssh key from the running 'Developer Mode' app on the device ",
|
|
19
|
+
"ares commands use this ssh key to communicate with the device.",
|
|
20
|
+
"",
|
|
21
|
+
"Emulator does not require this process as ares commands already have a ssh key for the emulator."
|
|
22
|
+
]
|
|
23
|
+
}
|
|
24
|
+
],
|
|
25
|
+
"examples" : [
|
|
26
|
+
{
|
|
27
|
+
"default" : [
|
|
28
|
+
"# Run 'ps -aux' command on the DEVICE",
|
|
29
|
+
"ares-novacom --run \"ps -aux\" -d DEVICE",
|
|
30
|
+
"",
|
|
31
|
+
"# Forward the DEVICE tcp port 22 to the host tcp port 3030",
|
|
32
|
+
"ares-novacom --forward --port 22:3030 -d DEVICE",
|
|
33
|
+
"",
|
|
34
|
+
"# Get a ssh key from the running 'Developer Mode' app on the DEVICE",
|
|
35
|
+
"ares-novacom --getkey -d DEVICE"
|
|
36
|
+
]
|
|
37
|
+
}
|
|
38
|
+
],
|
|
39
|
+
"options" : {
|
|
40
|
+
"cmdOpt":"option",
|
|
41
|
+
"default" : ["device", "device-list", "help", "version", "verbose"],
|
|
42
|
+
"device" : [
|
|
43
|
+
"-d, --device <DEVICE> @TAB@ Specify DEVICE to use",
|
|
44
|
+
"@TAB@ If not specified, set to default device"
|
|
45
|
+
],
|
|
46
|
+
"device-list" : "-D, --device-list @TAB@ List the available DEVICEs",
|
|
47
|
+
"help" : "-h, --help @TAB@ Display this help",
|
|
48
|
+
"version" : "-V, --version @TAB@ Display version info",
|
|
49
|
+
"verbose" : "-v @TAB@ Display this verbose log"
|
|
50
|
+
},
|
|
51
|
+
"extraoption" : {
|
|
52
|
+
"cmdOpt":"hidden",
|
|
53
|
+
"default" : {
|
|
54
|
+
"cmdOpt":"option",
|
|
55
|
+
"default" : ["passphrase", "level"],
|
|
56
|
+
"passphrase" : "-pass, --passphrase PASSPHRASE",
|
|
57
|
+
"level" : "--level <LEVEL> @TAB@ Set a log LEVEL of 'silly', 'verbose', 'info', 'http', 'warn', 'error'"
|
|
58
|
+
}
|
|
59
|
+
},
|
|
60
|
+
"extraexample" : {
|
|
61
|
+
"cmdOpt" : "hidden",
|
|
62
|
+
"default" : [
|
|
63
|
+
"# Get a ssh key and set passphrase value in the device info",
|
|
64
|
+
"ares-novacom <PACKAGE_FILE> -d <DEVICE> --getkey --passphrase ABCDEF",
|
|
65
|
+
""
|
|
66
|
+
]
|
|
67
|
+
}
|
|
68
|
+
}
|
|
@@ -0,0 +1,101 @@
|
|
|
1
|
+
{
|
|
2
|
+
"display" : ["name", "synopsis", "options", "extraoption", "description", "examples", "extraexample"],
|
|
3
|
+
"notab":["examples", "extraexample"],
|
|
4
|
+
"notitle" : ["extraoption", "extraexample"],
|
|
5
|
+
"name" : "ares-package - Create or analyze a package containing a webOS app or service",
|
|
6
|
+
"synopsis" : {
|
|
7
|
+
"default" : [
|
|
8
|
+
"ares-package [OPTION...] <APP_DIR> [<SERVICE_DIR> [...]]",
|
|
9
|
+
"ares-package -i, --info <PACKAGE_FILE>",
|
|
10
|
+
"ares-package -I, --info-detail <PACKAGE_FILE>"
|
|
11
|
+
]
|
|
12
|
+
},
|
|
13
|
+
"description" : [
|
|
14
|
+
{
|
|
15
|
+
"default" : [
|
|
16
|
+
"This command creates and analyzes a webOS package(.ipk).",
|
|
17
|
+
"",
|
|
18
|
+
"APP_DIR is an app directory containing a valid appinfo.json file.",
|
|
19
|
+
"",
|
|
20
|
+
"SERVICE_DIR is a directory containing a valid services.json file.",
|
|
21
|
+
"",
|
|
22
|
+
"APP_DIR or OUTPUT_DIR can be a relative or absolute path.",
|
|
23
|
+
"",
|
|
24
|
+
"PACKAGE_FILE is a webOS package with .ipk extension.",
|
|
25
|
+
"",
|
|
26
|
+
"LEVEL is priority of logs (e.g., silly, verbose, info, warn, error)"
|
|
27
|
+
]
|
|
28
|
+
}
|
|
29
|
+
],
|
|
30
|
+
"examples" : [
|
|
31
|
+
{
|
|
32
|
+
"default" : [
|
|
33
|
+
"# Create a package without including all text files and the test directory.",
|
|
34
|
+
"ares-package -e \"*.txt\" -e \"test\" APP_DIR",
|
|
35
|
+
"",
|
|
36
|
+
"# Create a package for the webOS app with multiple webOS services",
|
|
37
|
+
"ares-package ~/projects/app ~/projects/service ~/projects/service2",
|
|
38
|
+
"",
|
|
39
|
+
"# Analyze the package file",
|
|
40
|
+
"ares-package -i ~/projects/packages/com.examples.app_1.0_all.ipk",
|
|
41
|
+
"",
|
|
42
|
+
"# Analyze the package file in more detail",
|
|
43
|
+
"ares-package -I ~/projects/packages/com.examples.app_1.0_all.ipk"
|
|
44
|
+
]
|
|
45
|
+
}
|
|
46
|
+
],
|
|
47
|
+
"options" : {
|
|
48
|
+
"cmdOpt":"option",
|
|
49
|
+
"default" : ["check", "outdir", "app-exclude", "rom", "help", "version", "verbose"],
|
|
50
|
+
"ose" : ["level"],
|
|
51
|
+
"check" : "-c, --check @TAB@ Check whether the app and service are valid, but don't package it",
|
|
52
|
+
"outdir" : "-o, --outdir <OUTPUT_DIR> @TAB@ Use OUTPUT_DIR as the output directory",
|
|
53
|
+
"no-minify" : "-n, --no-minify @TAB@ Skip the minification phase",
|
|
54
|
+
"app-exclude" : "-e, --app-exclude <PATTERN> @TAB@ Exclude files, given as a PATTERN",
|
|
55
|
+
"rom" : [
|
|
56
|
+
"-r, --rom @TAB@ Do not create ipk, instead output a folder structure"
|
|
57
|
+
],
|
|
58
|
+
"encrypt" : "-enc, --encrypt @TAB@ Make an encrypted package, it cannot install by ares-install",
|
|
59
|
+
"sign" : "-s, --sign <PRIVATEKEY> @TAB@ Make app sign to package. Must use with certificate option",
|
|
60
|
+
"certificate" : "-crt, --certificate <CERTIFICATE> @TAB@ Add certificate.crt to pacakge",
|
|
61
|
+
"help" : "-h, --help @TAB@ Display this help",
|
|
62
|
+
"version" : "-V, --version @TAB@ Display version info",
|
|
63
|
+
"verbose" : "-v @TAB@ Display this verbose log",
|
|
64
|
+
"level" : "--level <LEVEL> @TAB@ Set log LEVEL and display log as set LEVEL"
|
|
65
|
+
},
|
|
66
|
+
"extraoption" : {
|
|
67
|
+
"cmdOpt":"hidden",
|
|
68
|
+
"default" : {
|
|
69
|
+
"cmdOpt":"option",
|
|
70
|
+
"default" : ["force"],
|
|
71
|
+
"tv" : ["pkgid", "pkgversion", "pkginfofile"],
|
|
72
|
+
"force" : [
|
|
73
|
+
"-f, --force @TAB@ Make .ipk package forcibly with same file structure in APP_DIR",
|
|
74
|
+
" (ex) APP_DIR/",
|
|
75
|
+
" +-- usr/",
|
|
76
|
+
" +-- usr/bin",
|
|
77
|
+
" +-- usr/bin/foo",
|
|
78
|
+
" +-- etc/",
|
|
79
|
+
" +-- etc/boo.conf",
|
|
80
|
+
" '-f, --force' option will keep this structure in .ipk"
|
|
81
|
+
],
|
|
82
|
+
"pkgid" : "-pi, --pkgid <ID> @TAB@ Set package id for packaging about only services\n@TAB@@TAB@ Cannot use with pkginfofile option",
|
|
83
|
+
"pkgversion" : "-pv, --pkgversion <VERSION> @TAB@ Set package version for packaging about only services",
|
|
84
|
+
"pkginfofile" : "-pf, --pkginfofile <PKGINFOFILE> @TAB@ Set package meta by pkginfofile for packaging about only services\n@TAB@@TAB@ Cannot use with pkgid option"
|
|
85
|
+
}
|
|
86
|
+
},
|
|
87
|
+
"extraexample" : {
|
|
88
|
+
"cmdOpt" : "hidden",
|
|
89
|
+
"tv" : [
|
|
90
|
+
"# Create a package for the multiple webOS services without webOS app",
|
|
91
|
+
"ares-package -pi com.domain SVC1_DIR SVC2_DIR",
|
|
92
|
+
"",
|
|
93
|
+
"# Create a package for the multiple webOS services by existing packgeinfo.json",
|
|
94
|
+
"ares-package -pf packageinfo.json SVC1_DIR SVC2_DIR",
|
|
95
|
+
"",
|
|
96
|
+
"# Create a package for the webOS resource",
|
|
97
|
+
"ares-package -pf packageinfo.json RSC_DIR",
|
|
98
|
+
""
|
|
99
|
+
]
|
|
100
|
+
}
|
|
101
|
+
}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
{
|
|
2
|
+
"display" : ["name", "synopsis", "options", "description", "examples"],
|
|
3
|
+
"notab":["examples"],
|
|
4
|
+
"name" : "ares-pull - Pull the file from target device to host machine",
|
|
5
|
+
"synopsis" : {
|
|
6
|
+
"default" : [
|
|
7
|
+
"ares-pull [OPTION...] <SOURCE(REMOTE)> <DESTINATION(LOCAL)>"
|
|
8
|
+
]
|
|
9
|
+
},
|
|
10
|
+
"description" : [
|
|
11
|
+
"This command copies files from the DEVICE to the host.",
|
|
12
|
+
"",
|
|
13
|
+
"SOURCE is the path in the DEVICE, where files exist.",
|
|
14
|
+
"",
|
|
15
|
+
"DESTINATION is the path in the host machine, where multiple files can be copied.",
|
|
16
|
+
"",
|
|
17
|
+
"LEVEL is priority of logs. (e.g., silly, verbose, info, warn, error)"
|
|
18
|
+
],
|
|
19
|
+
"examples" : [
|
|
20
|
+
"# Copy file or directory from the DEVICE to host machine",
|
|
21
|
+
"ares-pull /home/username/foo /home/username/foo -d DEVICE",
|
|
22
|
+
""
|
|
23
|
+
],
|
|
24
|
+
"options" : {
|
|
25
|
+
"cmdOpt":"option",
|
|
26
|
+
"default" : ["device", "device-list", "help", "version", "ignore", "verbose", "level"],
|
|
27
|
+
"device" : [
|
|
28
|
+
"-d, --device <DEVICE> @TAB@ Specify DEVICE to use",
|
|
29
|
+
"@TAB@ If not specified, set to default device"
|
|
30
|
+
],
|
|
31
|
+
"device-list" : "-D, --device-list @TAB@ List the available DEVICEs",
|
|
32
|
+
"ignore" : "-i, --ignore @TAB@ Hide the detailed copy messages",
|
|
33
|
+
"help" : "-h, --help @TAB@ Display this help",
|
|
34
|
+
"version" : "-V, --version @TAB@ Display version info",
|
|
35
|
+
"verbose" : "-v @TAB@ Display this verbose log",
|
|
36
|
+
"level" : "--level <LEVEL> @TAB@ Set log LEVEL and display log as set LEVEL"
|
|
37
|
+
}
|
|
38
|
+
}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
{
|
|
2
|
+
"display" : ["name", "synopsis", "options", "description", "examples"],
|
|
3
|
+
"notab":["examples"],
|
|
4
|
+
"name" : "ares-push - Push the file from host machine to target device",
|
|
5
|
+
"synopsis" : {
|
|
6
|
+
"default" : [
|
|
7
|
+
"ares-push [OPTION...] <SOURCE(LOCAL)> <DESTINATION(REMOTE)>"
|
|
8
|
+
]
|
|
9
|
+
},
|
|
10
|
+
"description" : [
|
|
11
|
+
"This command copies files from the host to the DEVICE.",
|
|
12
|
+
"",
|
|
13
|
+
"SOURCE is the path in the host machine, where files exist.",
|
|
14
|
+
"",
|
|
15
|
+
"DESTINATION is the path in the DEVICE, where multiple files can be copied.",
|
|
16
|
+
"",
|
|
17
|
+
"LEVEL is priority of logs. (e.g., silly, verbose, info, warn, error)"
|
|
18
|
+
],
|
|
19
|
+
"examples" : [
|
|
20
|
+
"# Copy file or directory from host machine to target device",
|
|
21
|
+
"ares-push /home/username/foo /home/username/foo -d DEVICE",
|
|
22
|
+
""
|
|
23
|
+
],
|
|
24
|
+
"options" : {
|
|
25
|
+
"cmdOpt":"option",
|
|
26
|
+
"default" : ["device", "device-list", "help", "version", "ignore", "verbose", "level"],
|
|
27
|
+
"device" : [
|
|
28
|
+
"-d, --device <DEVICE> @TAB@ Specify DEVICE to use",
|
|
29
|
+
"@TAB@ If not specified, set to default device"
|
|
30
|
+
],
|
|
31
|
+
"device-list" : "-D, --device-list @TAB@ List the available DEVICEs",
|
|
32
|
+
"ignore" : "-i, --ignore @TAB@ Hide the detailed copy messages",
|
|
33
|
+
"help" : "-h, --help @TAB@ Display this help",
|
|
34
|
+
"version" : "-V, --version @TAB@ Display version info",
|
|
35
|
+
"verbose" : "-v @TAB@ Display this verbose log",
|
|
36
|
+
"level" : "--level <LEVEL> @TAB@ Set log LEVEL and display log as set LEVEL"
|
|
37
|
+
}
|
|
38
|
+
}
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
{
|
|
2
|
+
"display" : ["name", "synopsis", "options", "description", "examples"],
|
|
3
|
+
"name" : "ares-server - Run a local web server",
|
|
4
|
+
"synopsis" : {
|
|
5
|
+
"default" : [
|
|
6
|
+
"ares-server [OPTION...] <APP_DIR>"
|
|
7
|
+
]
|
|
8
|
+
},
|
|
9
|
+
"options" : {
|
|
10
|
+
"cmdOpt":"option",
|
|
11
|
+
"default" : ["port", "open","help", "version", "verbose"],
|
|
12
|
+
"ose" : ["level"],
|
|
13
|
+
"port" : "-p, --port <PORT> @TAB@ Specify port to use [default:random]",
|
|
14
|
+
"open" : "-o, --open @TAB@ Open localhost url with a web browser",
|
|
15
|
+
"help" : "-h, --help @TAB@ Display this help",
|
|
16
|
+
"version" : "-V, --version @TAB@ Display version info",
|
|
17
|
+
"verbose" : "-v @TAB@ Display this verbose log",
|
|
18
|
+
"level" : "--level <LEVEL> @TAB@ Set log LEVEL and display log as set LEVEL"
|
|
19
|
+
},
|
|
20
|
+
"description" : [
|
|
21
|
+
{
|
|
22
|
+
"default" : [
|
|
23
|
+
"This command runs a local web server."
|
|
24
|
+
],
|
|
25
|
+
"ose" : [
|
|
26
|
+
"",
|
|
27
|
+
"LEVEL is priority of logs. (e.g., silly, verbose, info, warn, error)"
|
|
28
|
+
]
|
|
29
|
+
}
|
|
30
|
+
],
|
|
31
|
+
"examples" : [
|
|
32
|
+
"# Run a local web server and set ~/project/foo as the home directory",
|
|
33
|
+
"ares-server ~/project/foo",
|
|
34
|
+
"",
|
|
35
|
+
"# Run a local web server (9090 port) and set ~/project/foo as the home directory",
|
|
36
|
+
"ares-server -p 9090 ~/project/foo",
|
|
37
|
+
""
|
|
38
|
+
]
|
|
39
|
+
}
|
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
{
|
|
2
|
+
"display" : ["name", "synopsis", "options", "description", "examples"],
|
|
3
|
+
"notab":["examples"],
|
|
4
|
+
"name" : "ares-setup-device - Add or modify the information of the devices to use",
|
|
5
|
+
"synopsis" : {
|
|
6
|
+
"default" : [
|
|
7
|
+
"ares-setup-device [OPTION...]",
|
|
8
|
+
"ares-setup-device [OPTION...] -a, --add <DEVICE_NAME> -i, --info <DEVICE_INFO>",
|
|
9
|
+
"ares-setup-device [OPTION...] -m, --modify <DEVICE_NAME> -i, --info <DEVICE_INFO>",
|
|
10
|
+
"ares-setup-device [OPTION...] -r, --remove <DEVICE_NAME>",
|
|
11
|
+
"ares-setup-device [OPTION...] -f, --default <DEVICE_NAME>"
|
|
12
|
+
]
|
|
13
|
+
},
|
|
14
|
+
"description" : [
|
|
15
|
+
{
|
|
16
|
+
"default": [
|
|
17
|
+
"This command manages the information of the devices.",
|
|
18
|
+
"",
|
|
19
|
+
"** Attributes of DEVICE_INFO **",
|
|
20
|
+
" description [string] description of target device",
|
|
21
|
+
" host [string] ip address",
|
|
22
|
+
" port [string] port number",
|
|
23
|
+
" username [string] user name to connect ('developer')",
|
|
24
|
+
" privatekey [string] ssh private key file name",
|
|
25
|
+
" ssh private key should exist under $HOME/.ssh/",
|
|
26
|
+
" passphrase [string] passphrase used for generating ssh keys",
|
|
27
|
+
" password [string] password for ssh connection",
|
|
28
|
+
" default [boolean] set default device with 'add' option",
|
|
29
|
+
"",
|
|
30
|
+
"This command can set a default device.",
|
|
31
|
+
"If you don't specify a target device, the default device is used as the target device.",
|
|
32
|
+
"",
|
|
33
|
+
"LEVEL is priority of logs. (e.g., silly, verbose, info, warn, error)"
|
|
34
|
+
]
|
|
35
|
+
}
|
|
36
|
+
],
|
|
37
|
+
"examples" : [
|
|
38
|
+
{
|
|
39
|
+
"default" : [
|
|
40
|
+
"",
|
|
41
|
+
"# Add a DEVICE and set the username, host, port",
|
|
42
|
+
"ares-setup-device -a DEVICE -i \"{'username':'root', 'host':'127.0.0.1','port':'22'}\"",
|
|
43
|
+
" Or",
|
|
44
|
+
"ares-setup-device -a DEVICE -i \"username=root\" -i \"host=127.0.0.1\" -i \"port=22\"",
|
|
45
|
+
"",
|
|
46
|
+
"# Modify the information of the DEVICE",
|
|
47
|
+
"ares-setup-device -m DEVICE -i \"{'username':'developer','host':'192.168.0.123'}\"",
|
|
48
|
+
" Or",
|
|
49
|
+
"ares-setup-device -m DEVICE -i \"username=developer\" -i \"host=192.168.0.123\"",
|
|
50
|
+
"",
|
|
51
|
+
"# Remove the DEVICE",
|
|
52
|
+
"ares-setup-device -r DEVICE",
|
|
53
|
+
"",
|
|
54
|
+
"# Set default the DEVICE",
|
|
55
|
+
"ares-setup-device -f DEVICE",
|
|
56
|
+
"",
|
|
57
|
+
"# Change the ssh password of the DEVICE as an empty value",
|
|
58
|
+
"ares-setup-device -m DEVICE -i \"password=\"",
|
|
59
|
+
""
|
|
60
|
+
]
|
|
61
|
+
}
|
|
62
|
+
],
|
|
63
|
+
"options" : {
|
|
64
|
+
"cmdOpt":"option",
|
|
65
|
+
"default" : ["reset", "list", "listfull", "help", "version", "verbose"],
|
|
66
|
+
"ose" : ["level"],
|
|
67
|
+
"reset" : "-R, --reset @TAB@ Initialize the DEVICE list",
|
|
68
|
+
"list" : "-l, --list @TAB@ List the available DEVICEs",
|
|
69
|
+
"listfull" : "-F, --listfull @TAB@ List the available DEVICEs in detail",
|
|
70
|
+
"help" : "-h, --help @TAB@ Display this help",
|
|
71
|
+
"version" : "-V, --version @TAB@ Display version info",
|
|
72
|
+
"verbose" : "-v @TAB@ Display this verbose log",
|
|
73
|
+
"level" : "--level <LEVEL> @TAB@ Set log LEVEL and display log as set LEVEL"
|
|
74
|
+
}
|
|
75
|
+
}
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
{
|
|
2
|
+
"display" : ["name", "synopsis", "options", "description", "examples"],
|
|
3
|
+
"notab":["examples"],
|
|
4
|
+
"name" : "ares-shell - Open a device terminal or run a command",
|
|
5
|
+
"synopsis" : {
|
|
6
|
+
"default" : [
|
|
7
|
+
"ares-shell [OPTION...]",
|
|
8
|
+
"ares-shell -r, --run <CMD> [OPTION...]"
|
|
9
|
+
]
|
|
10
|
+
},
|
|
11
|
+
"description" : [
|
|
12
|
+
"This command opens a device terminal.",
|
|
13
|
+
"",
|
|
14
|
+
"DISPLAY_ID is working on multi-user profile.",
|
|
15
|
+
"If not specified, target's host terminal will be opened.",
|
|
16
|
+
"",
|
|
17
|
+
"LEVEL is priority of logs. (e.g., silly, verbose, info, warn, error)"
|
|
18
|
+
],
|
|
19
|
+
"examples" : [
|
|
20
|
+
"# Open a device terminial",
|
|
21
|
+
"ares-shell -d DEVICE",
|
|
22
|
+
"",
|
|
23
|
+
"# Run a device command on the device",
|
|
24
|
+
"ares-shell -r \"ls\" -d DEVICE",
|
|
25
|
+
""
|
|
26
|
+
],
|
|
27
|
+
"options" : {
|
|
28
|
+
"cmdOpt":"option",
|
|
29
|
+
"default" : ["display", "device", "device-list", "help", "version", "verbose", "level"],
|
|
30
|
+
"device" : [
|
|
31
|
+
"-d, --device <DEVICE> @TAB@ Specify DEVICE to use",
|
|
32
|
+
"@TAB@ If not specified, set to default device"
|
|
33
|
+
],
|
|
34
|
+
"device-list" : "-D, --device-list @TAB@ List the available DEVICEs",
|
|
35
|
+
"run" : "-r, --run <CMD> @TAB@ Run CMD",
|
|
36
|
+
"display": "-dp,--display <DISPLAY_ID> @TAB@ Open shell of the specified display",
|
|
37
|
+
"help" : "-h, --help @TAB@ Display this help",
|
|
38
|
+
"version" : "-V, --version @TAB@ Display version info",
|
|
39
|
+
"verbose" : "-v @TAB@ Display this verbose log",
|
|
40
|
+
"level" : "--level <LEVEL> @TAB@ Set log LEVEL and display log as set LEVEL"
|
|
41
|
+
}
|
|
42
|
+
}
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
{
|
|
2
|
+
"display" : ["name", "synopsis", "options", "description", "examples"],
|
|
3
|
+
"notab":["examples"],
|
|
4
|
+
"notitle" : ["extraoption"],
|
|
5
|
+
"name" : "ares - Display the help information for ares commands",
|
|
6
|
+
"synopsis" : {
|
|
7
|
+
"default" : [
|
|
8
|
+
"ares [OPTION...]"
|
|
9
|
+
]
|
|
10
|
+
},
|
|
11
|
+
"description" : [
|
|
12
|
+
{
|
|
13
|
+
"default" : [
|
|
14
|
+
"This command lists all ares commands or provides help information of the given command.",
|
|
15
|
+
"",
|
|
16
|
+
"COMMAND is a postfix of the ares commands."
|
|
17
|
+
],
|
|
18
|
+
"ose" : [
|
|
19
|
+
"",
|
|
20
|
+
"LEVEL is priority of logs. (e.g., silly, verbose, info, warn, error)"
|
|
21
|
+
]
|
|
22
|
+
}
|
|
23
|
+
],
|
|
24
|
+
"examples" : [
|
|
25
|
+
"# List all the ares commands",
|
|
26
|
+
"ares -l",
|
|
27
|
+
"",
|
|
28
|
+
"# Display the help information for installation",
|
|
29
|
+
"ares --install",
|
|
30
|
+
""
|
|
31
|
+
],
|
|
32
|
+
"options" : {
|
|
33
|
+
"cmdOpt":"option",
|
|
34
|
+
"default" : ["list", "<COMMAND>", "help", "version"],
|
|
35
|
+
"ose" : ["verbose", "level"],
|
|
36
|
+
"list" : [
|
|
37
|
+
"-l, --list @TAB@ List all the ares commands"
|
|
38
|
+
],
|
|
39
|
+
"<COMMAND>" : [
|
|
40
|
+
"--<COMMAND> @TAB@ Display the help information of the COMMAND"
|
|
41
|
+
],
|
|
42
|
+
"help" : "-h, --help @TAB@ Display this help",
|
|
43
|
+
"version" : "-V, --version @TAB@ Display version info",
|
|
44
|
+
"verbose" : "-v @TAB@ Display this verbose log",
|
|
45
|
+
"level" : "--level <LEVEL> @TAB@ Set log LEVEL and display log as set LEVEL"
|
|
46
|
+
}
|
|
47
|
+
}
|