Dennis Lee Bieber wrote:

Windows PowerShell
Copyright (C) Microsoft Corporation. All rights reserved.

Try the new cross-platform PowerShell https://aka.ms/pscore6

PS C:\Users\Owner> Get-ChildItem -Path C:\Python310\ -Recurse -Name -Filter
"pip.*"

Tried it. Oh man what a slow process:
  sync & timer &
  pwsh -Command Get-ChildItem -Path F:\gv\Python310\ -Recurse -Name -Filter "pip.*" 
&
  timer

  (15 results stripped). Completed in 12.44 sec!

As opposed to my own Envtool:
  sync & timer &
  envtool.exe --evry pip.* | grep "Python310" &
  timer

  (15 results stripped) Completed in 0.57 sec!

But I have 5 GByte of stuff under 'f:\gv\Python310\'

Envtool is at https://github.com/gvanem/Envtool
Works best together with the amazing EveryThing search engine
by David Carpenter at https://www.voidtools.com

--
--gv
--
https://mail.python.org/mailman/listinfo/python-list

Reply via email to