From 8bfa61a66f51fc875ae89eebf8184f6d9022fda1 Mon Sep 17 00:00:00 2001 From: Greg Schueler Date: Wed, 16 May 2012 10:37:08 -0700 Subject: [PATCH] Add documentation for interpreter-args-quoted [#571] --- docs/en/developer/02-plugins.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/docs/en/developer/02-plugins.md b/docs/en/developer/02-plugins.md index 83406f0f006..54b0aafa548 100644 --- a/docs/en/developer/02-plugins.md +++ b/docs/en/developer/02-plugins.md @@ -330,6 +330,11 @@ Optional entries: script. This can be a single binary path, e.g. `/bin/bash`, or include any args to the command, such as `/bin/bash -c`. * `script-args` - the arguments to use when executing the script file. +* `interpreter-args-quoted` - true/false - (default false). If true, the execution will + be done by passing the file and args as a single argument to the interpreter: + `${interpreter} "${file} ${arg1} ${arg2}..."`. If false, + the execution will be done by passing the file and args as separate arguments: + `${interpreter} ${file} ${arg1} ${arg2}...` ### Configurable Resource Model Source Script Plugin