From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga06.intel.com (mga06.intel.com [134.134.136.31]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ml01.01.org (Postfix) with ESMTPS id 8249921E2DA64 for ; Tue, 15 Aug 2017 22:40:32 -0700 (PDT) Received: from orsmga001.jf.intel.com ([10.7.209.18]) by orsmga104.jf.intel.com with ESMTP; 15 Aug 2017 22:42:58 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.41,381,1498546800"; d="scan'208";a="1163082633" Received: from ray-dev.ccr.corp.intel.com ([10.239.9.2]) by orsmga001.jf.intel.com with ESMTP; 15 Aug 2017 22:42:57 -0700 From: Ruiyu Ni To: edk2-devel@lists.01.org Cc: Huajing Li Date: Wed, 16 Aug 2017 13:42:53 +0800 Message-Id: <20170816054254.16184-2-ruiyu.ni@intel.com> X-Mailer: git-send-email 2.12.2.windows.2 In-Reply-To: <20170816054254.16184-1-ruiyu.ni@intel.com> References: <20170816054254.16184-1-ruiyu.ni@intel.com> Subject: [PATCH 1/2] Shell/mkdir: Modify the help content to align to spec. X-BeenThere: edk2-devel@lists.01.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: EDK II Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 16 Aug 2017 05:40:32 -0000 From: Huajing Li Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Huajing Li Reviewed-by: Ruiyu Ni --- .../UefiShellLevel2CommandsLib.uni | 15 ++++++--------- 1 file changed, 6 insertions(+), 9 deletions(-) diff --git a/ShellPkg/Library/UefiShellLevel2CommandsLib/UefiShellLevel2CommandsLib.uni b/ShellPkg/Library/UefiShellLevel2CommandsLib/UefiShellLevel2CommandsLib.uni index 60f48f4633..f9c647a035 100644 --- a/ShellPkg/Library/UefiShellLevel2CommandsLib/UefiShellLevel2CommandsLib.uni +++ b/ShellPkg/Library/UefiShellLevel2CommandsLib/UefiShellLevel2CommandsLib.uni @@ -464,18 +464,15 @@ "MKDIR dir [dir...]\r\n" ".SH OPTIONS\r\n" " \r\n" -" dir - Specifies the name of a directory or directories to create. (Wildcards are not\r\n" -" allowed) \r\n" +" dir - Specifies the name of a directory or directories to create.\r\n" +" (Wildcards are not allowed)\r\n" ".SH DESCRIPTION\r\n" " \r\n" "NOTES:\r\n" -" 1. The parent directory must already exist.\r\n" -" 2. If the directory already exists, mkdir will abort.\r\n" -" 3. Specifying additional directory parameters dependent on previous\r\n" -" directory parameters is not allowed:\r\n" -" For example, mkdir new new\Test is not allowed.\r\n" -" 4. Redirecting output to a file that exists under the directory specified\r\n" -" by this command is not allowed.\r\n" +" 1. Mkdir can create one or more new directories.\r\n" +" 2. If dir includes nested directories, then parent directories will be\r\n" +" created before child directories.\r\n" +" 3. If the directory already exists, mkdir will exit with an error.\r\n" ".SH EXAMPLES\r\n" " \r\n" "EXAMPLES:\r\n" -- 2.12.2.windows.2