diff --git a/src/Tools/dotnet-dump/Program.cs b/src/Tools/dotnet-dump/Program.cs index 45368c7d44..c009e7a679 100644 --- a/src/Tools/dotnet-dump/Program.cs +++ b/src/Tools/dotnet-dump/Program.cs @@ -108,7 +108,7 @@ private static Argument DumpPath() => private static Option RunCommand() => new Option( aliases: new[] { "-c", "--command" }, - description: "Run the command on start.") + description: "Runs the command on start. Multiple instances of this parameter can be used in an invocation to chain commands. Commands will get run in the order that they are provided on the command line. If you want to dotnet dump to exit after the commands, your last command should be 'exit'.") { Argument = new Argument(name: "command", getDefaultValue: () => Array.Empty()) { Arity = ArgumentArity.ZeroOrMore } };