 |
linux - How to list all files in the size order - Unix & Linux Stack Exchange
With zsh and GNU ls: ls -ldU -- **/*(.OL) (note that older versions of zsh had issues with file sizes over 2^32). Some operating systems have a limit on the size of the argument list passed to a command. In those cases, you'd need: autoload -U zargs zargs
unix.stackexchange.com |
 |