Exporting variable tables with multiple lines
You can now export variable tables with multiple lines.
You can now export a variable with multiple lines in a job stream.
This can be achieved in two ways:
-
Add \n into the property value wrapping the value with quotes (works on Windows and Unix platforms).
For exmaple: jobprop VAR1 "line_1\nline_2\nline_3" -> is displayed as line_1 line_2 line_3 jobprop VAR2 "\"line_1\nline_2\nline_3\"" -> is displayed as "line_1 line_2 line_3 "
- Write the property value starting with quotes, and then press enter when a new
line is needed (works only on UNIX platforms).
jobprop VAR2 "line_1 line_2 line_3" -> is displayed as line_1 line_2 line_3 jobprop VAR2 "\"line_1 line_2 line_3\""