Skip to content

Instantly share code, notes, and snippets.

@gponty
Created December 12, 2019 12:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gponty/cdbe93187d58bba9a58c30077176bcdc to your computer and use it in GitHub Desktop.
Save gponty/cdbe93187d58bba9a58c30077176bcdc to your computer and use it in GitHub Desktop.
Taille disque et repertoire Linux
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