Merge branch 'master' into 9998-no-count-items-available
[arvados.git] / doc / user / topics / run-command.html.textile.liquid
index f02a6e6f5af207d85b757402441a968a23c804b2..ac40458e3f73d43a7978013faa5597d5c8f7a667 100644 (file)
@@ -4,6 +4,8 @@ navsection: userguide
 title: "run-command reference"
 ...
 
+{% include 'pipeline_deprecation_notice' %}
+
 The @run-command@ crunch script enables you run command line programs.
 
 {% include 'tutorial_expectations_workstation' %}
@@ -239,6 +241,19 @@ Provide standard input and standard output redirection.
 
 @task.stdout@ specifies the desired file name in the output directory to save the content of standard output.  When command describes a Unix pipeline, this captures the output of the last command.
 
+h3. task.env
+
+Set environment variables for the command.  Accepts an object mapping environment variables to the desired values.  Parameter substitution is performed on values, but not on the environment variable names themselves.  Example usage:
+
+<pre>
+{
+  "command": ["/bin/sh", "-c", "echo $MY_ENV_VAR"],
+  "task.env": {
+    "MY_ENV_VAR": "Hello world!"
+  }
+}
+</pre>
+
 h3. task.vwd
 
 Background: because Keep collections are read-only, this does not play well with certain tools that expect to be able to write their outputs alongside their inputs (such as tools that generate indexes that are closely associated with the original file.)  The run-command's solution to this is the "virtual working directory".