gpt4 book ai didi

PowerShell 如何使参数可选,如果 ExecuteSSHCommand 为空,则不添加参数

转载 作者:行者123 更新时间:2023-12-02 23:29:26 31 4
gpt4 key购买 nike

我有一个具有如下功能的 powershell 脚本:

function RunOtherScript($_oneParameter, $twoParameter)
{
ExecuteSSHCommand ("python -u otherScript.py " +
"--oneParameter $_oneParameter " +
"--twoParameter $twoParameter ")
}

参数“twoParameter”是可选的。我的问题是如何根据 $twoParameter 是否为空来动态添加字符串“--twoParameter $twoParameter”

最佳答案

我会这样做:

function RunOtherScript($_oneParameter, $twoParameter) {
$cmd = "python -u otherScript.py --oneParameter $_oneParameter"
if ($twoParameter -ne $null) { $cmd += " --twoParameter $twoParameter" }
ExecuteSSHCommand $cmd
}

关于PowerShell 如何使参数可选,如果 ExecuteSSHCommand 为空,则不添加参数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18880522/

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