1//! Shell tools: shell.exec (/bin/sh) and shell.pwsh (PowerShell).
2//!
3//! Subprocess execution with configurable timeouts; shared capture helper
4//! reused across both tools.
56pub mod exec;
7pub mod pwsh;
8pub mod shared;
910pub use exec::ShellExecTool;
11pub use pwsh::ShellPwshTool;