Skip to content

"Execute Command" Operation

olitank edited this page Nov 25, 2025 · 3 revisions

This operation allows to execute a system command in "command line" mode.

Settings

Asynchronously

Whether the operation simply starts the command process without waiting for its completion (otherwise the plan execution is blocked until the command is completed or the timeout is exceeded).

(Next Setting)

executable

The path to the command's executable file.

arguments

The list of arguments passed to the command.

timeoutMilliseconds

Maximum execution time (milliseconds) for the command. The command process is terminated if its lifetime exceeds this time. This timeout is infinite by default, if its value is zero, or if it is negative.

workingDirectoryPath

Specifies the directory from which the command is executed. By default, the current directory is used.

(Operation Result)

NOTE: This result is only available if the operation is asynchronous.

exitCode

Integer exit status.

output

Text available in the standard output.

error

Text available in the error output.

timedOut

Indicates whether the maximum execution time has been exceeded.

Clone this wiki locally