v3.3.0
processx 3.3.0
-
process
can now redirect the standard error to the standard output, via
specifyingstderr = "2>&1"
. This works both with files and pipes. -
run()
can now redirect the standard error to the standard output, via
the newstderr_to_stdout
argument. -
The
$kill()
and$kill_tree()
methods get aclose_connection = TRUE
argument that closes all pipe connections of the process. -
run()
now always kills the process (and its process tree if
cleanup_tree
isTRUE
) before exiting. This also closes all
pipe connections (#149).