与 C 和其他语言一样,您可以在实际执行脚本时为 script/.exe 提供参数。例如:
myScript.exe Hello 10 P
其中 Hello, 10 和 P 被传递给程序本身的某个变量。
这在 Powershell 中可行吗?如果是这样,您如何将这些参数提供给给定的 $variable
谢谢!
与 C 和其他语言一样,您可以在实际执行脚本时为 script/.exe 提供参数。例如:
myScript.exe Hello 10 P
其中 Hello, 10 和 P 被传递给程序本身的某个变量。
这在 Powershell 中可行吗?如果是这样,您如何将这些参数提供给给定的 $variable
谢谢!
使用这样的参数块定义您的脚本:
-- Start of script foo.ps1 --
param($msg, $num, $char)
"You passed in $msg, $num and $char"
您还可以进一步键入限定参数,例如:
-- Start of script foo2.ps1 --
param([string]$msg, [int]$num, [char]$char)
"You passed in $msg, $num and $char"
您还可以指定默认值和所需值,例如:
-- Start of script foo3.ps1 --
param([string]$msg=$(throw "Msg param is required"), [int]$num, [char]$char="P")
"You passed in $msg, $num and $char"
您可以使用高级功能(指定属性以验证参数等)获得更高级的功能。但这应该让你继续前进。
只是对@Keith Hill 回答的补充......
当您谈论“C”时,您还可以使用自动变量 $args
编写带有参数的脚本。
$Args
包含传递给函数、脚本或脚本块的未声明参数和/或参数值的数组。
-- Start of script foo3.ps1 --
if ($args.length -gt 0)
{
write-host "first param is $($args[0])"
}
for ($i=0 ; $i -lt $args.length ; $i++)
{
write-host "$i) " $args[$i]
}
你可以调用 thr 脚本
.\foo3.ps1 coucou bonjour "hello world"
first param is coucou
0) coucou
1) bonjour
2) hello world