Friday, November 30, 2007

Powershell Sanity: dir/s

After trying to type it over 10 times, I finally added it to my profile:


function Find-Files-Recursive($includes)
{
get-childitem -r -i $includes | % {$_.FullName}
}
Set-Alias dir/s Find-Files-Recursive

0 comments: