Hacker News new | ask | show | jobs
by waf 1195 days ago
Just for reference, the PowerShell version of this would be:

    ls | where Length -gt 1mb | sort LastWriteTime
1 comments

Heads-up: if current directory contains other directories, this will fail. You'll need to adjust the filter:

    ls | where { -not $_.PSIsContainer -and $_.Length -gt 1mb } | sort LastWriteTime