首页 > 代码库 > 函数中的$input

函数中的$input

$input 在此属于一个特殊变量,一般在函数中用于接收输入

1 function FindWindowsFolder 2 { 3 $input | where-object {$_.Name -eq "Windows"} 4 }5 6 ls -path c:\ | FindWindowsFolder

结果为:

函数中的$input