我想知道是否可以更改PowerShell的外观,因此命令行在目录行下面有一行:
C:\your\directory\path\will\go\here >
$ now-a-super-long-command-can-be-entered-here
答案 0 :(得分:2)
您需要修改prompt
功能。
以下可以做你想做的事:
function prompt {
Write-Host "$(Get-Location) > "
return "$ "
}
只需将其粘贴到现有的PowerShell窗口即可立即启用它。如果您想将其永久化,请将其添加到profile.ps1
。
This link包含有关修改个人资料的信息。