execute-bash-script-sync
Execute bash scripts synchronously in a secure Docker container, ensuring each command completes before proceeding. Ideal for tasks requiring sequential execution and precise control over script timing and environment variables.
Instructions
This tool executes shell scripts synchronously in bash. Executing each command creates a new bash process. Synchronous execution requires to wait the scripts completed. Asynchronous execution makes it possible to execute multiple scripts in parallel. You can reduce waiting time by planning in advance which shell scripts need to be executed and executing them in parallel. Avoid using this execute-bash-script-sync tool unless you really need to, and use the execute-bash-script-async tool whenever possible.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
command | Yes | The bash script to execute | |
options | Yes |