gpt4 book ai didi

powershell - 如何基于脚本参数(即msbuild,gradle)在Powershell中实现任务

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

是否可以在PowerShell中实现任务样式的系统,以便您可以执行以下操作:

.\script.ps1 build # runs build() function
.\script.ps1 publish # runs publish() function
我希望使用PowerShell来构建/发布应用程序,而不是要求用户安装gradle / msbuild,并且希望避免为每个添加的功能更新switch语句。
目前它是这样的:
#!/usr/bin/env powershell

param(
$action = 'build'
)

function build() {
echo 'build';
}

function publish() {
echo 'publish';
}

switch($action) {
'build' { build; }
'publish' { publish; }
}

最佳答案

可以使用call operator&来执行命令(例如函数),该命令的名称(或者,对于外部可执行文件而言,路径)存储在变量中。
但是,正如marsze指出的那样,按名称盲目调用函数意味着您最终可能会调用与脚本无关的(任何形式的)命令,这最好是无意的,最坏的是安全风险。
幸运的是,PowerShell提供了丰富的反射功能,并且还公开了自己的解析API,因此您可以确定脚本本身中实际定义了哪些功能,并且仅允许调用这些功能。
请注意,下面的代码还定义了一个list任务,该任务列出了脚本中定义的所有任务(函数)的名称。

#!/usr/bin/env powershell

param(
[string] $task = 'build'
)

# -- Define a function for each task.
# Note that functions must be defined *before* they are called in PowerShell.

function list {
"Available tasks:"
$functionNames
}

function build {
'build'
}

function publish {
'publish'
}

# -- Invoke the specified task by invoking the function of the same name.

# Get the list of the names of all functions defined in this script.
$functionNames = $MyInvocation.MyCommand.ScriptBlock.Ast.FindAll(
{ $args[0] -is [Management.Automation.Language.FunctionDefinitionAst] },
$false
).Name

if ($task -in $functionNames) {

# A known task - invoke it.
& $task

}
else {

# Report a script-terminating error, if the task name is uknown.
throw "Unknown task: $task"
}

关于powershell - 如何基于脚本参数(即msbuild,gradle)在Powershell中实现任务,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64616691/

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