{{ score }}
  # File size in human-readable format(-h) of everything in that folder
du -sh *

# List human readable size of all sub folders from current location 
du -h --max-depth=1

# Sorted filesystem usage
du -s * | sort -nr