Created
November 26, 2018 05:19
-
-
Save jongalloway/1930ba63f41948a1b5b6559d19203dcf to your computer and use it in GitHub Desktop.
PowerShell fast find - https://twitter.com/terrajobst/status/1066920790896009216
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Set-Alias less "C:\Program Files\Git\usr\bin\less.exe" | |
function f($text, $files="*.*") | |
{ | |
findstr /spin $text $files | less | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment