We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
The following table describes the notation used to specify command-line syntax.
<Text enclosed in angle brackets>
{Text enclosed in curly brackets}
[Text enclosed in square brackets]
|
The following examples illustrate the notation.
Given the following syntax:
ocl export {--file | -f} <file-path>
The parameter after the export command can be either --file or -f, but one of them is required. The following commands are valid:
export
--file
-f
ocl export --file c:\MyFolder\MyFile.ocl ocl export -f c:\MyFolder\MyFile.ocl
ocl export --to-format {csv | excel}
The parameter after the export command must be --to-format. Its value must be either csv or excel. The following commands are valid:
--to-format
csv
excel
ocl export --to-format csv ocl export --to-format excel