Created
December 23, 2021 02:25
-
-
Save Zeryther/5dcdf75559fc9b5db17fa3a0874d106f to your computer and use it in GitHub Desktop.
Find the biggest files and directories in the current directory under Linux
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# The last number represents the amount of results you will get | |
du -a . | sort -n -r | head -n 5 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment