Created
June 1, 2022 08:40
-
-
Save SylvainMarty/a2d9aee86de99608b9256cc04786024c to your computer and use it in GitHub Desktop.
Get the 20 biggest files on a linux system
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
#!/bin/bash | |
sudo du -ah / 2>/dev/null | sort -rh | head -n 20 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment