用文件参数 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