Options
An option has the following caracteristics:
- it has a name prefixed by two hyphens (e.g.
--version). - it may have a shortcut prefixed by one hyphen (e.g.
-his a shortcut of--help). - it is case-sensitive
Shortcuts can be grouped behind one hyphen (e.g. -vh is equivalent to -v -h).
The options default values are system-independent.
General-purpose options used by various commands.
| Name | Shortcut | Parameter | Description |
|---|---|---|---|
--verbose |
-v |
- | Enable verbose mode. |
--help |
-h |
- | Show this help message and exit. |
--version |
-V |
- | Print version information and exit. |
--no-parallel |
- | - | Disable parallel execution. |
--sort |
- | - | Sort output by natural order. |
SDMX-specific options.
| Name | Shortcut | Parameter | Description |
|---|---|---|---|
--sources |
-s |
<file> |
File that provides data source definitions. |
--languages |
-l |
<langs> |
Language priority list. |
CSV options used to output content.
The format is RFC4180.
| Name | Shortcut | Parameter | Description |
|---|---|---|---|
--output |
-o |
<file> |
Output to a file instead of stdout. |
--gzipped |
-z |
- | Compress the output file with gzip. |
--append |
- | - | Append to the end of the output file. |
--encoding |
-e |
<encoding> |
Charset used to encode text. |
Network-related options used to deal with performance, proxies, security and authentication.
| Name | Shortcut | Parameter | Description |
|---|---|---|---|
--[no-]auto-proxy |
- | - | Enable automatic proxy detection. |
--[no-]curl |
- | - | Use curl backend instead of JDK. |
--[no-]default-ssl |
- | - | Disable default truststore. |
--[no-]system-ssl |
- | - | Disable system truststore. |
--no-cache |
- | - | Disable caching. |
--system-auth |
- | - | Disable system authentication. |
--user |
- | <user:password> |
Specify the user and password to use for server authentication. |