函数中的$input

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

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

结果为:

posted on 2014-08-28 16:53  momingliu11  阅读(486)  评论(0编辑  收藏  举报