如何在 Windows 命令行的输出前添加一个 header?
How to add a header before the output in Windows command line?
在 ITRS 中,我试图在打印 Windows 中的文件输出之前打印 "Current Java Directory"。
在 Windows 命令行上,我使用的是:C:\Windows\system32\cmd.exe /c type D:\Apps\Statements\Alerts\java_path_validation.txt
。
目前在 ITRS 中显示如下:
我想做什么:
但我现在需要 "Current Java Directory" 作为 header,其中 C:\Program Files (x86)Java\jre7。然后在它下面,我需要将 C:\Program Files (x86)Java\jre7 作为值。
这是我之前可以使用回显从命令行执行的操作吗,我执行:C:\Windows\system32\cmd.exe /c type D:\Apps\Statements\Alerts\java_path_validation.txt
.
我找到了解决方案。您必须首先在 ITRS 中使用 type 命令回显标题,然后是“&”符号,以便它可以在命令行上 运行 它:
C:\Windows\system32\cmd.exe /c echo Current Java Directory & type D:\Apps\Statements\Alerts\java_path_validation.txt
在 ITRS 中,我试图在打印 Windows 中的文件输出之前打印 "Current Java Directory"。
在 Windows 命令行上,我使用的是:C:\Windows\system32\cmd.exe /c type D:\Apps\Statements\Alerts\java_path_validation.txt
。
目前在 ITRS 中显示如下:
我想做什么:
但我现在需要 "Current Java Directory" 作为 header,其中 C:\Program Files (x86)Java\jre7。然后在它下面,我需要将 C:\Program Files (x86)Java\jre7 作为值。
这是我之前可以使用回显从命令行执行的操作吗,我执行:C:\Windows\system32\cmd.exe /c type D:\Apps\Statements\Alerts\java_path_validation.txt
.
我找到了解决方案。您必须首先在 ITRS 中使用 type 命令回显标题,然后是“&”符号,以便它可以在命令行上 运行 它:
C:\Windows\system32\cmd.exe /c echo Current Java Directory & type D:\Apps\Statements\Alerts\java_path_validation.txt