用檔案引數 switch 語句
-file
引數允許 switch 語句從檔案接收輸入。switch 語句評估檔案的每一行。
Example file input.txt
:
condition
test
示例 switch 語句:
switch -file input.txt
{
'condition' {'First Action'}
'test' {'Second Action'}
'fail' {'Third Action'}
}
輸出:
First Action
Second Action