From cc5afe5fc7b0fd4b8fa0d358cea02617d41d6475 Mon Sep 17 00:00:00 2001 From: PRO <54608551+PRO-2684@users.noreply.github.com> Date: Sun, 20 Apr 2025 14:21:33 +0800 Subject: [PATCH] Update progress-bar-sequences.md to include Nushell example --- TerminalDocs/tutorials/progress-bar-sequences.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/TerminalDocs/tutorials/progress-bar-sequences.md b/TerminalDocs/tutorials/progress-bar-sequences.md index ee4c2ef6..cc3cc47e 100644 --- a/TerminalDocs/tutorials/progress-bar-sequences.md +++ b/TerminalDocs/tutorials/progress-bar-sequences.md @@ -85,5 +85,12 @@ echo Started progress (normal, 50) The above example uses the `NUL` device to write the escape sequence to the console without a newline. +### Nushell + +```nu +# Set the progress bar to 50% +print "\u{1b}]9;4;1;50\u{07}" +``` + > **Note**: > Don't see your favorite shell here? If you figure it out, feel free to [contribute a solution for your preferred shell!](https://github.com/MicrosoftDocs/terminal/compare)