diff options
Diffstat (limited to 'lib')
-rw-r--r-- | lib/pure/osproc.nim | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/pure/osproc.nim b/lib/pure/osproc.nim index 19d26f2eb..f3b9c1545 100644 --- a/lib/pure/osproc.nim +++ b/lib/pure/osproc.nim @@ -97,7 +97,8 @@ proc execProcess*(command: string, ## Example: ## ## .. code-block:: Nim - ## let outp = execProcess("nim c -r mytestfile.nim") + ## let outp = execProcess("/usr/bin/env", ["nim", "c", "-r", "mytestfile.nim"], option={}) + ## let outp_shell = execProcess("nim c -r mytestfile.nim") ## # Note: outp may have an interleave of text from the nim compile ## # and any output from mytestfile when it runs |