Windows 如何配置提示符,使CMD命令从下一行开始?

Windows 如何配置提示符,使CMD命令从下一行开始?,windows,cmd,command-prompt,prompt,Windows,Cmd,Command Prompt,Prompt,我当前的cmd看起来像: 为此,我做了如下工作: setx PROMPT $c$$$f-$g$s $ (MY CURRENT PATH <--> DATE) : Nothing here/ Blank ($) -> Command Goes here ... 但我想要的是: setx PROMPT $c$$$f-$g$s $ (MY CURRENT PATH <--> DATE) : Nothing here/ Blank ($) -> Comma

我当前的
cmd
看起来像:

为此,我做了如下工作:

setx PROMPT $c$$$f-$g$s 
$ (MY CURRENT PATH <--> DATE) : Nothing here/ Blank
($) -> Command Goes here ...
但我想要的是:

setx PROMPT $c$$$f-$g$s 
$ (MY CURRENT PATH <--> DATE) : Nothing here/ Blank
($) -> Command Goes here ...
$(我的当前路径日期):此处无任何内容/空白

($)->命令位于此处

我试过:

setx PROMPT $$$s$c$p$s$l--$g$d$f$s:^
more? $c$$$f-$g$s
但遗憾的是,它没有起作用。甚至有可能做到这一点吗

请不要建议使用其他终端,如babun、git、windows上的bash、hyper等。我已经在使用所有这些:)

请参见

PROMPT/?
$\回车和换行符

但我想要的是:

setx PROMPT $c$$$f-$g$s 
$ (MY CURRENT PATH <--> DATE) : Nothing here/ Blank
($) -> Command Goes here ...
产生:

$(C:\Windows\Temp 2017-08-03)
($) -> █

非常感谢您,先生!我不知道
$部分。帮助很大:)我花了大约一个小时才得到这个结果。