From 392f9a408ef62213d306a31928acae5c6dcc4838 Mon Sep 17 00:00:00 2001 From: yuk7 Date: Mon, 6 May 2024 22:12:35 +0900 Subject: [PATCH] run: help: wrote note for inherit current directory behavior --- src/run/help.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/run/help.go b/src/run/help.go index 0499da5..051ddfe 100644 --- a/src/run/help.go +++ b/src/run/help.go @@ -6,7 +6,8 @@ func ShowHelp(showTitle bool) { println("Usage:") } println(" ") - println(" - Open a new shell with your default settings.") + println(" - Open a new shell with your default settings. ") + println(" Inherit current directory (with exception that %%USERPROFILE%% is changed to $HOME).") println() println(" run ") println(" - Run the given command line in that instance. Inherit current directory.")