我想将命令行路径重命名为一个简单路径,以便我有更多空间在窗口上工作。此外,它将使屏幕更加整洁
我想从
重命名命令提示符屏幕 C:\Program Files (x86)\Microsoft SDKs\Windows\v7.0A\Bin\NETFX 4.0 Tools\x64
到
C:\NETFXPATH
在过去,我发现了一个命令行ren xyz
并且屏幕突然变为c:\xyz
或xyz
,以便在屏幕上轻松工作。
我该如何实现?
答案 0 :(得分:1)
不幸的是,使用标准PROMPT
命令行是不可能的。这不是PROMPT
接受的选项之一:
J:\>prompt /?
Changes the cmd.exe command prompt.
PROMPT [text]
text Specifies a new command prompt.
Prompt 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)
$N Current drive
$P Current drive and path
$Q = (equal sign)
$S (space)
$T Current time
$V Windows version number
$_ Carriage return and linefeed
$$ $ (dollar sign)
If Command Extensions are enabled the PROMPT command supports
the following additional formatting characters:
$+ zero or more plus sign (+) characters depending upon the
depth of the PUSHD directory stack, one character for each
level pushed.
$M Displays the remote name associated with the current drive
letter or the empty string if current drive is not a network
drive.
您可以通过创建与MKLINK
的联结来缩短文件夹的路径,或者使用SUBST
将文件夹映射到驱动器号来解决此问题。
答案 1 :(得分:0)
无法得到类似你的榜样的东西。 但是你可以通过
获得一个简短的提示(没有任何路径)prompt $g
只会显示“>
”
或者如果您只需要更多空间来编写命令,则可以添加换行来提示:
prompt $p$_ $g
将显示路径(作为“通常”提示),但从下一行获取输入。