0

我想从 test2.ps1 调用 test1.ps1。我想在调用时将参数从 test2.ps1 传递给 test1.ps1。

4

1 回答 1

4
PS C:\> gc .\test2.ps1
.\test1.ps1 'foo'
Write-Host 'bar'
PS C:\> gc .\test1.ps1
$a = $ARGS[0] -split ''
[array]::Reverse($a)
Write-Host ($a -join '')
PS C:\> .\test2.ps1
oof
bar
于 2013-09-10T18:44:39.323 回答