From a3b5d4def546224d9e4e003b0fe7f3852fb9e98d Mon Sep 17 00:00:00 2001 From: ge Date: Thu, 8 Jan 2026 09:55:32 +0300 Subject: [PATCH] readme: upd --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 4b58e05..05b84f5 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ but I don't like any of them. So let's overview. * `os.execvp()`, `os.execve()` — cross-platform versions of the C functions of the same name. -* `os.execute()`, `os.execute_opt()`, `os.execute_or_exit()`, `os.execute_or_panic()` — starts and waits for a command to completed. Under the hood, they perform a dirty hack by calling shell with stream redirection `'exec 2>&1;${cmd}'`. Only stdout and exit_code are available in Result. +* `os.execute()`, `os.execute_opt()`, `os.execute_or_exit()`, `os.execute_or_panic()` — starts and waits for a command to completed. Under the hood, they perform a dirty hack by calling shell with stream redirection `'exec 2>&1;${cmd}'`. * `util.execute_with_timeout()` (from `os.util`) — just an `os.execute()` wrapper.