--- title: "SHCall" ---
This is generated from the built in components of BuildMaster 2023.0, and may be different than what you have installed (especially if you have extensions); go to [Gear Icon] -> Administration -> Operations within your BuildMaster instance to see exactly what operations are available.

Calls a shell script that is stored as an asset.

Script usage:

SHCall(
	Name: <text>,
	[Arguments: <text>],
	[Verbose: <true/false>],
	[ExitCode: <integer>],
	[SuccessExitCode: <text>],
	[OutputLogLevel: <integer>],
	[ErrorOutputLogLevel: <integer>],
	[Parameters: <%(key1: value1, ...)>],
	[InputVariables: <%(key1: value1, ...)>],
	[OutputVariables: <@(text)>],
	[EnvironmentVariables: <%(key1: value1, ...)>],
	[CaptureDebug: <true/false>]
);

This operation may be prefixed with Linux::, although this is a built-in namespace and isn't really necessary.

Arguments:

NameFormatScript UsageUsage Notes
Name (default)
text
Name
The name of the script asset. This argument is required.
Arguments
text
Arguments
Arguments to pass to the script.
Verbose
true/false
Verbose
When true, additional information about staging the script is written to the debug log.
Exit code
integer
ExitCode
Value note: "eg. $ScriptExitCode".
Success exit code
text
SuccessExitCode
Integer exit code which indicates no error. When not specified, the exit code is ignored. This can also be an integer prefixed with an inequality operator. Default value is "ignored".
Output log level
integer
OutputLogLevel
Error log level
integer
ErrorOutputLogLevel
Parameters
%(key1: value1, ...)
Parameters
InputVariables
%(key1: value1, ...)
InputVariables
OutputVariables
@(text)
OutputVariables
Environment variables
%(key1: value1, ...)
EnvironmentVariables
Capture debug messages
true/false
CaptureDebug