summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAditya Timalsina <[email protected]>2025-07-25 02:03:35 +0545
committerGitHub <[email protected]>2025-07-24 20:18:35 +0000
commitf0400912fd3f6abd4d5ea08cb99d2dfdffec1dc0 (patch)
treea1f942614bc0be901398864c056cf0a442a00bb0
parent30b6cf8a008e5bce36eb44f6ee95e036b4af2d81 (diff)
docs: clarify shell command does not use default shell (#2203)
Co-authored-by: Jenna Inouye <[email protected]> Co-authored-by: N. Taylor Mullen <[email protected]>
-rw-r--r--docs/cli/commands.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/cli/commands.md b/docs/cli/commands.md
index f6e9451e..10a10108 100644
--- a/docs/cli/commands.md
+++ b/docs/cli/commands.md
@@ -268,7 +268,7 @@ At commands are used to include the content of files or directories as part of y
The `!` prefix lets you interact with your system's shell directly from within Gemini CLI.
- **`!<shell_command>`**
- - **Description:** Execute the given `<shell_command>` in your system's default shell. Any output or errors from the command are displayed in the terminal.
+ - **Description:** Execute the given `<shell_command>` using `bash` on Linux/macOS or `cmd.exe` on Windows. Any output or errors from the command are displayed in the terminal.
- **Examples:**
- `!ls -la` (executes `ls -la` and returns to Gemini CLI)
- `!git status` (executes `git status` and returns to Gemini CLI)