bdy sandbox exec

$bdy sandbox exec [options] [command]

Execute a command in sandbox

OPTIONS
-h, --help
display help for command
AVAILABLE COMMANDS
Execute a command in sandbox
Kill a running command
List all commands
Get command logs
Get command status

Documentation for bdy v1.20.0

Last modified on Apr 13, 2026

Examples

Ran command in sandbox
bdy sb exec command sandbox-identifier "ls -la"$
Ran command in sandbox and wait for it to complete
bdy sb exec command sandbox-identifier "sleep 10" --wait$
Kill command running in sandbox
bdy sb exec kill sandbox-identifier command-id$
Kill command running in sandbox and automatically confirm killing
bdy sb exec kill sandbox-identifier command-id -f$
List commands running in sandbox
bdy sb exec ls sandbox-identifier$
List commands running in sandbox in different project
bdy sb exec ls sandbox-identifier -p project$
Show logs from command
bdy sb exec logs sandbox-identifier command-id$
Show logs from command and wait for it to complete
bdy sb exec logs sandbox-identifier command-id --wait$
Show status of command
bdy sb exec status sandbox-identifier command-id$
Show status of command in sandbox from another workspace
bdy sb exec status sandbox-identifier command-id -w workspace -p project$