From f596e8145d9e493a387d6ca0d5b8966c28fdbb00 Mon Sep 17 00:00:00 2001 From: JamesP Date: Fri, 16 Oct 2015 23:13:14 +1000 Subject: [PATCH] add simple example for execProcess, exeCmd, execCmdEx --- lib/pure/osproc.nim | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/lib/pure/osproc.nim b/lib/pure/osproc.nim index fa20afff03..2e65e15b29 100644 --- a/lib/pure/osproc.nim +++ b/lib/pure/osproc.nim @@ -123,11 +123,21 @@ proc execProcess*(command: string, ## and returns its output as a string. ## WARNING: this function uses poEvalCommand by default for backward compatibility. ## Make sure to pass options explicitly. + ## + ## .. code-block:: Nim + ## + ## let outp = 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 proc execCmd*(command: string): int {.rtl, extern: "nosp$1", tags: [ExecIOEffect].} ## Executes ``command`` and returns its error code. Standard input, output, ## error streams are inherited from the calling process. This operation ## is also often called `system`:idx:. + ## + ## .. code-block:: Nim + ## + ## let errC = execCmd("nim c -r mytestfile.nim") proc startProcess*(command: string, workingDir: string = "", @@ -1053,6 +1063,10 @@ proc execCmdEx*(command: string, options: set[ProcessOption] = { exitCode: int] {.tags: [ExecIOEffect, ReadIOEffect], gcsafe.} = ## a convenience proc that runs the `command`, grabs all its output and ## exit code and returns both. + ## + ## .. code-block:: Nim + ## + ## let (outp, errC) = execCmdEx("nim c -r mytestfile.nim") var p = startProcess(command, options=options + {poEvalCommand}) var outp = outputStream(p) result = (TaintedString"", -1)