0
如何將PowerShell中的命令行參數讀入數組中?喜歡的東西將相同類型的命令行參數讀入Powershell中的數組/散列
myprogram -file file1 -file file2 -file file3
,然後我的哈希
[file1,file2,file3]
類似問題的數組。 謝謝。
如何將PowerShell中的命令行參數讀入數組中?喜歡的東西將相同類型的命令行參數讀入Powershell中的數組/散列
myprogram -file file1 -file file2 -file file3
,然後我的哈希
[file1,file2,file3]
類似問題的數組。 謝謝。
命令行參數默認存儲在數組中。該數組是$ args []。如果你想要命名參數,使用param()。如果您想爲同一參數指定多個參數,請使用逗號。
示例代碼:
function myprogram {
param (
[string[]]$file
)
#Do stuff to $file array here
}
命令行:
myprogram -file file1,file2,file3
非常感謝! –