kelleyma49 / PSFzf

A PowerShell wrapper around the fuzzy finder fzf
MIT License
795 stars 36 forks source link

Updates readme.md #49

Closed diegomichel closed 3 years ago

diegomichel commented 3 years ago

Changes usage for faster option:

PS C:\Users\drubio> Compare-Object ( Get-ChildItem . -Recurse -Attributes "Directory" ) ( Get-ChildItem . -Recurse | ? { $_.PSIsContainer } )

PS C:\Users\drubio> Measure-Command { Get-ChildItem . -Recurse | ? { $_.PSIsContainer } } Days : 0 Hours : 0 Minutes : 0 Seconds : 15 Milliseconds : 861 Ticks : 158618315 TotalDays : 0.000183586012731481 TotalHours : 0.00440606430555556 TotalMinutes : 0.264363858333333 TotalSeconds : 15.8618315 TotalMilliseconds : 15861.8315

PS C:\Users\drubio> Measure-Command { Get-ChildItem . -Recurse -Attributes "Directory" } Days : 0 Hours : 0 Minutes : 0 Seconds : 6 Milliseconds : 122 Ticks : 61224666 TotalDays : 7.08618819444444E-05 TotalHours : 0.00170068516666667 TotalMinutes : 0.10204111 TotalSeconds : 6.1224666 TotalMilliseconds : 6122.4666