Skip to content

wakterm.run_child_process(args)

Since: Version 20200503-171512-b13ef15f

The functionality described in this section requires version 20200503-171512-b13ef15f of wakterm, or a more recent version.

This function accepts an argument list; it will attempt to spawn that command and will return a tuple consisting of the boolean success of the invocation, the stdout data and the stderr data.

local wakterm = require 'wakterm'

local success, stdout, stderr = wakterm.run_child_process { 'ls', '-l' }

See also background_child_process