gpt4 book ai didi

powershell - 仅在脚本中覆盖默认的PowerShell PWD别名

转载 作者:行者123 更新时间:2023-12-02 23:17:43 25 4
gpt4 key购买 nike

我想覆盖默认的pwd别名,以仅返回确切的Path,并且更改应仅在脚本内进行。通常,可以使用以下命令来实现pwd(仅适用于路径):

(Get-Location).Path

如何将其设置为新的默认 pwd别名?

最佳答案

创建一个函数以返回所需的值:

function Get-PathOnly
{
return (Get-Location).Path
}

pwd别名设置为该函数:
Set-Alias pwd Get-PathOnly -Scope Script

关于powershell - 仅在脚本中覆盖默认的PowerShell PWD别名,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60546595/

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