2
主調用腳本定義了3個參數,我想所有的模塊都可以使用它們,一種方法是使用全局腳本,但看起來不好。powershell:如何將主腳本中定義的一些參數公開給所有要調用的模塊
我希望我們可以使用類似下面的傳遞參數,但不起作用
import-module "$currentPath\ETLLib.psm1" $a $b $c
我的主要腳本是這樣的:
$a
$b
$c
import-module "$currentPath\ETLLib.psm1" $a $b $c
import-module "$currentPath\Tranform.psm1" $a $b $c
ETLLib.psm1
param($a $b $c)
Tranform.psm1
param($a $b $c)