bdy sandbox exec command
$bdy sandbox exec command|cmd [options] <identifier> <command>
Execute a command in sandbox. Commands run as buddy with passwordless sudo. Use sudo for package installs
Examples
## ran command in sandboxbdy sb exec command sandbox-identifier "ls -la"$
## ran command in sandbox and wait for it to completebdy sb exec command sandbox-identifier "sleep 10" --wait$
## install package from aptbdy sb exec command sandbox-identifier "sudo apt-get update && sudo apt-get install -y nginx" --wait$