From 567e4088f6caefcf59cdfd8432c9ac0c76b43ada Mon Sep 17 00:00:00 2001 From: Andrew Fecheyr Date: Wed, 2 Nov 2016 22:22:36 +0100 Subject: [PATCH] Correct syntax of commands from command_local.cc --- COMMAND-Execute.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/COMMAND-Execute.md b/COMMAND-Execute.md index e4a6341..9564cb7 100644 --- a/COMMAND-Execute.md +++ b/COMMAND-Execute.md @@ -7,17 +7,17 @@ execute={command,arg1,arg2,...} This will execute the external command with arguments arg1,arg2,.... It will throw an error if the exit status is not 0, and return 0 itself otherwise. ``` -execute_nothrow={command,arg1,arg2,...} +execute.nothrow={command,arg1,arg2,...} ``` This will execute the external command with arguments arg1,arg2,.... It will return the return value of the command. ``` -execute_capture={command,arg1,arg2,...} +execute.capture={command,arg1,arg2,...} ``` This will execute the external command with arguments arg1,arg2,.... It will throw an error if the exit status is not 0, and return the stdout output of the command otherwise. ``` -execute_capture_nothrow={command,arg1,arg2,...} +execute.capture_nothrow={command,arg1,arg2,...} ``` This will execute the external command with arguments arg1,arg2,.... It will return the stdout output of the command.