Created
December 14, 2023 18:21
-
-
Save joulgs/23ab216017840294973c25177e76cc00 to your computer and use it in GitHub Desktop.
check folder sizer unix system
This file contains 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
Listar o tamanho de cada subdiretório no diretório raiz em ordem decrescente: | |
sudo du -h --max-depth=1 / | sort -rh | |
Se preferir uma saída mais concisa, você pode listar apenas os diretórios e seus tamanhos: | |
sudo du -h --max-depth=1 --separate-dirs / | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment