Taille du dossier dans MB Linux
# Just use the du command:
du -sh -- *
# will give you the cumulative disk usage of all non-hidden directories,
# files etc in the current directory in human-readable format.
# You can use the df command to know the free space in the filesystem
# containing the directory:
df -h .
Merwanski