From f5d12b3a2c25245cd0322c2de145e144e559f1fc Mon Sep 17 00:00:00 2001 From: Nick Hale <4175918+njhale@users.noreply.github.com> Date: Tue, 13 Feb 2024 18:26:18 -0500 Subject: [PATCH] docs: use single quotes to prevent interpolation Fix the `Hello, World!` example in the README by using single quotes to prevent shell interpolation of `!`. Signed-off-by: Nick Hale <4175918+njhale@users.noreply.github.com> --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index b5053161..e16fc6d4 100644 --- a/README.md +++ b/README.md @@ -60,7 +60,7 @@ export OPENAI_API_KEY="your-api-key" ### 3. Run Hello World ```shell -gptscript https://get.gptscript.ai/echo.gpt --input "Hello, World!" +gptscript https://get.gptscript.ai/echo.gpt --input 'Hello, World!' ``` ## How it works