No products in the cart.
- This topic is empty.
Viewing 2 posts - 1 through 2 (of 2 total)
Viewing 2 posts - 1 through 2 (of 2 total)
- You must be logged in to reply to this topic.
If I run in CMD
dir /od
I get sorted files by length. But now, do anyone know what is a command to get the 50 largest file?
Thank you so much for help.
Branka
This combined command could satisfy you.
du -a /od | sort -n -r | head -n 50
--all -a (Write size for all files)
--numeric-sort -n (Compare string numerical value)
--reverse -r (Reverse results)