gpt4 book ai didi

Windows PowerShell : changing the command prompt

转载 作者:可可西里 更新时间:2023-11-01 11:54:41 26 4
gpt4 key购买 nike

使用 Windows PowerShell,如何更改命令提示符?

例如,默认提示说

PS C:\Documents and Settings\govendes\My Documents>

我想自定义那个字符串。

最佳答案

只需将函数 prompt 放入您的 PowerShell 配置文件(notepad $PROFILE),例如:

function prompt {"PS: $(get-date)>"}

或彩色:

function prompt
{
Write-Host ("PS " + $(get-date) +">") -nonewline -foregroundcolor White
return " "
}

关于Windows PowerShell : changing the command prompt,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5725888/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com