pub unsafe extern "C" fn aws_run_command(
    allocator: *mut aws_allocator,
    options: *mut aws_run_command_options,
    result: *mut aws_run_command_result
) -> c_int
Expand description

Currently this API is implemented using popen on Posix system and _popen on Windows to capture output from running a command. Note that popen only captures stdout, and doesn’t provide an option to capture stderr. We will add more options, such as acquire stderr in the future so probably will alter the underlying implementation as well.