Skip to content

Instantly share code, notes, and snippets.

@bielawb
Created October 9, 2020 21:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bielawb/c000aa586baa76dfc24ba7756d22c1a5 to your computer and use it in GitHub Desktop.
Save bielawb/c000aa586baa76dfc24ba7756d22c1a5 to your computer and use it in GitHub Desktop.
Aż do spełaniającego, od spełniającego.
$wszystkiePliki = Get-ChildItem -Path C:\Windows -File | Sort-Object -Property Length
$małe = $wszystkiePliki.Where(
{ $_.Length -gt 1MB },
'Until'
)
$duże = $wszystkiePliki.Where(
{ $_.Length -gt 1MB },
'SkipUntil'
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment