execFileSync method

dynamic execFileSync(
  1. String file, [
  2. List<String> args,
  3. ExecOptions options
])

This method is generally identical to execFile with the exception that it will not return until the child process has fully closed.

Returns stdout from the command as a Buffer or string.

Implementation

external dynamic execFileSync(String file,
    [List<String> args, ExecOptions options]);