Update wikipage Process and BaseProcess. (Signed-off-by:alexk).

git-svn-id: https://svn.eiffel.com/eiffel-org/trunk@1915 abb3cda0-5349-4a8f-a601-0c33ac3a8c38
This commit is contained in:
eiffel-org
2017-10-03 15:41:22 +00:00
parent 4e38cce251
commit 57b2a9270b

View File

@@ -20,9 +20,9 @@ The advantage of `process_launcher` is that you do not have to care about quotin
== Output redirection ==
On the `BASE_PROCESS` object, it is possible to configure the execution.
* It is possible to redirect the standard and error output, and also the input, for instance:
** `redirect_output_to_file (..)` is used to record the execution output in a file
** `redirect_output_to_file` is used to record the execution output in a file
** `redirect_error_to_same_as_output` is used to redirect the error output with the standard output
** `redirect_input_to_file (..)` is used to take the input from a file.
** `redirect_input_to_file` is used to take the input from a file.
** check other `redirect_*` routines.
== Platform-specific settings ==