how's it going, everything alright? I need to build a script that controls the space of a particular FS which has several directories. On the other hand, it will be necessary to send an email indicating the percentage of occupancy of each Directory and within that FS, on the total occupancy indicating what percentage of the total space each directory occupies. What I am particularly in need of is how I can perform those calculations.
For example, I detail the name of the FS and what each directory occupies
FS : /archivos (5T)
Contenido: /archivos/test/ (1T)
Contenido: /archivos/garbage/ (10 Megas)
Contenido: /archivos/log/ (2T)
Contenido: /archivos/solaris/ (5 kilobytes)
lo que necesitaria es que me muestre algo asi
/archivos -> Ocupoa 5Teras, ocupado 90%
/archivos/test/ (1T), ocupa el 20% del FS /archivos
/archivos/garbage/ (10 Megas), ocupa el 1% del FS /archivos
/archivos/log/ (2T), ocupa el 30% del FS /archivos
/archivos/solaris/ (5 kilobytes), ocupa el 1% del FS /archivos
How can I get that data and calculate the percentage as I need it?
This must be in bash