gpt4 book ai didi

powershell - 如何编写中间带有参数的 PowerShell 别名?

转载 作者:行者123 更新时间:2023-12-02 22:30:00 24 4
gpt4 key购买 nike

我正在尝试设置 Windows PowerShell 别名来使用某些参数运行 MinGW 的 g++ 可执行文件。但是,这些参数需要位于文件名和其他参数之后。我不想经历尝试设置函数之类的麻烦。有没有一种方法可以简单地说:

alias mybuild="g++ {args} -lib1 -lib2 ..."

或者类似的东西?我对 PowerShell 不太熟悉,并且很难找到解决方案。有人吗?

最佳答案

正如 Roman 提到的,您想要使用函数,而不是别名。像这样的事情:

function mybuild { g++ $args -lib1 -lib2 ... }

要尝试一下,这里有一个简单的示例:

PS> function docmd { cmd /c $args there }
PS> docmd echo hello
hello there
PS>

您可能还想将其放入您的个人资料中,以便在运行 PowerShell 时可以使用它。您的配置文件的名称包含在 $profile 中。

关于powershell - 如何编写中间带有参数的 PowerShell 别名?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4166370/

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