runExecutableArgumentsSync abstract method

ProcessResult runExecutableArgumentsSync(
  1. String executable,
  2. List<String> arguments
)
inherited

Run a single executable with arguments, resolving the executable if needed.

Returns a process result (or throw if specified in the shell).

Compared to the async version, it is not possible to kill the spawn process nor to feed any input.

Implementation

ProcessResult runExecutableArgumentsSync(
  String executable,
  List<String> arguments,
);