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
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