Created
December 12, 2019 12:13
-
-
Save gponty/cdbe93187d58bba9a58c30077176bcdc to your computer and use it in GitHub Desktop.
Taille disque et repertoire 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
Taille des disques : | |
df -h | |
Taille des repertoire: | |
du /usr -h --max-depth=0 | |
Fichier de plus de xMo : | |
find / -type f -size +500000k -exec ls -lh {} \; | awk '{ print $9 ": " $5 }' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment