Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

When required, adopt the special character parameter.

Quotation Usage Table

ENVIRONMENTS AND SPECIFIC CASES

EXAMPLE

ENVIRONMENTS AND SPECIFIC CASES

EXAMPLE

Windows Command Terminal

Use embedded double quotes within a double-quoted string.

“-a addComment --comment ““This is an example of a double quoted string inside a double quote”” “

LINUX and MAC/OS terminals

LINUX quotes are used.

-common “ -a addComment --comment \ ”This is an example of a double quoted string \ ” ”

RUN CLI Actions

Use the same syntax as on the Windows terminal

“-a addComment --comment ““This is an example of a double quoted string inside a double quote”” “

Comma Separated Parameters

For parameters that allow entry of a comma separated list of values, the values that contain a comma must be enclosed in single quotes. Embedded single quotes within a quoted string must be doubled.

--custom “ 'first:a,b,c' second: x”

Run Scripts

Action in run scripts do not accept single quotes, hence use the same syntax as on the Windows terminal

run: “-a addComment --comment ““This is an example of a double quoted string inside a double quote”” “

Text Fields

Text fields may support the automatic conversion of " \n " (blanks are significant) to be replaced with a new line character.

--description "A multi-line text field: \n # line 1 \n # line 2"

...