Monday, December 03, 2007

Find all files that contain 'something'

In PowerShell

ls -r | ? {select-string $_ -patt something}

No comments: