-?:
<angle brackets> show what type of value a parameter expects. A placeholder ending with [] means the parameter is a list parameter that accepts multiple values.
Parameter names
Every parameter has a name. Prefix the name with a dash on the command line. Provide the value after the name, separated by a space or a colon (:). Both forms are equivalent:
Positional parameters
Some parameters can be specified by position, without naming them. Positional parameters must appear in the order shown in the synopsis. If the last positional parameter is a list parameter (marked with[]), every remaining value on the command line is assigned to it — meaning you cannot place named parameters after it, because the parser treats them as values instead.
Switch parameters
A switch represents a boolean value (true/false). Specifying a switch without a value sets it totrue. Most switches default to false when omitted.
To explicitly set the value — useful when a switch defaults to true, or to document intent — append :<value>:
List parameters
Parameters marked with[] in their placeholder accept multiple values. Separate values by following each one (except the last) with a trailing comma:
HexString parameters
Parameters with a<HexString> placeholder expect a plain hexadecimal string — no prefix, no separators. To pass the bytes { 0x01, 0x02, 0x03, 0x04 }:
Blob parameters
Blob parameters accept binary data in one of three forms: a hex string, a Base64 string, or a file path. The prefix tells the parser which form you are using.The Base64 parser accepts both standard (RFC 4648) and URL-safe variants, and does not require trailing
= padding.UncPath parameters
Some commands accept a UNC path with the following structure:-HostAddress parameter to specify the network address to connect to while keeping the server name in the UNC path for the protocol.
Alternative forward-slash syntax
Backslashes require escaping in most Linux shells, which produces awkward paths like\\\\SERVER1\\Users\\milchick. Titanis accepts forward slashes as an alternative: