Created
March 7, 2024 02:41
-
-
Save jhowbhz/e3bf0812e7607649f2ecba903fa57ed7 to your computer and use it in GitHub Desktop.
Find big files in linux terminal
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
find / -type f -size +1G -exec du -h {} + | sort -rh | head -n 1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment