Getting started Community Training Tutorials Documentation APIs, AI & Tools
%dw 2.0
import * from dw::System
output application/json
---
{
"envVars" : [
"real" : envVar("SHELL"),
"fake" : envVar("FAKE_ENV_VAR")
]
}
You're viewing an older version of the documentation. You can switch to the latest version or use the version selector in the left navigation.
Returns an environment variable with the specified name or null if the
environment variable is not defined.
This example returns a Mac command console (SHELL) path and returns null
on FAKE_ENV_VAR (an undefined environment variable). SHELL is one of the
standard Mac environment variables. Also notice that the import command
enables you to call the function without prepending the module name to it.