From f0400912fd3f6abd4d5ea08cb99d2dfdffec1dc0 Mon Sep 17 00:00:00 2001 From: Aditya Timalsina <108619806+timalsinaditya@users.noreply.github.com> Date: Fri, 25 Jul 2025 02:03:35 +0545 Subject: [PATCH] docs: clarify shell command does not use default shell (#2203) Co-authored-by: Jenna Inouye Co-authored-by: N. Taylor Mullen --- docs/cli/commands.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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. - **`!`** - - **Description:** Execute the given `` in your system's default shell. Any output or errors from the command are displayed in the terminal. + - **Description:** Execute the given `` 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)