|
|
|
|
|
by Amezarak
3755 days ago
|
|
> find, in particular, very much has a fine UI, and I dare you to process, and not just list, the files with cmd. I'm not really sure why he is comparing find with cmd in the first place. Nobody thinks cmd is good; most anybody actually doing anything in a shell on Windows would be doing it in Powershell. In that case, I would do something like: Get-ChildItem pathname -Filter test.txt -Recurse Any processing I want to do is easy, because I'm getting back objects and not just text. Say that I want to get a hash of each file named test.txt. Get-ChildItem C:\Users\Amezarak -Filter test.txt -Recurse | Get-FileHash |
|