我正在尝试弄清楚如何缩短 Windows 10 中的提示,这样我就不会最终得到一个深度嵌套的目录路径,占据大部分(或全部)命令行。
我尝试运用这些信息显示在这里,但它似乎无法正确转换到 Windows 10。我创建了一个新的环境变量,PROMPT
并填写了适用的信息,但它似乎没有达到预期的效果 - 它只是>
向下移动一行;仍然有很长的路径。
答案1
C:\Program Files\Internet Explorer\en-US>PROMPT=$N$G$S
C> ver
Microsoft Windows [Version 10.0.10586]
C>
我怎样才能制作这根棍子?
简单的方法
C> setx PROMPT $n$g$s
SUCCESS: Specified value was saved.
然后关闭并重新打开命令提示符。
艰辛的道路
Win+ Break,“高级系统设置”,“环境变量”...
笔记:
The prompt text can be made up of normal characters and the following special codes:
$A & (Ampersand)
$B | (pipe)
$C ( (Left parenthesis)
$D Current date
$E Escape code (ASCII code 27)
$F ) (Right parenthesis)
$G > (greater-than sign)
$H Backspace (erases previous character)
$L < (less-than sign)
$M Display the remote name for Network drives
$N Current drive
$P Current drive and path
$Q = (equal sign)
$S (space)
$T Current time
$V Windows NT version number
$_ Carriage return and linefeed
$$ $ (dollar sign)
$+ Will display plus signs (+) one for each level of the PUSHD directory stack