This bit… gives us the ability to save in a script block in a variable i.e.
$bigfiles = {
dir -Recurse | Where {$_.Length -gt 10000000}
}
To execute the script block just add a ‘&’ as prefix for the variable name
&$bigfiles
In this case, a list of all files larger than 10000000bytes under the current direcory will be returned.