Calculate size of everything with echo and find – command substitution, bash integer math
Print the size of everything in the system (Starting at /) in bytes: echo $(($(find / -print “+%s”))) Print the size of everything in the system (Starting at /) in Kbytes: echo $(($(find /Read More…