Skip to content

Instantly share code, notes, and snippets.

@jtuttas
Created March 13, 2013 11:07
Show Gist options
  • Save jtuttas/5151145 to your computer and use it in GitHub Desktop.
Save jtuttas/5151145 to your computer and use it in GitHub Desktop.
Die x größten Files Finden mittels Pipe
param (
$max=5
)
cls
Get-ChildItem -Recurse | Sort-Object Length -Descending | Select-Object -First $max
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment