Skip to content

Instantly share code, notes, and snippets.

@lillyfreitas
Created November 4, 2017 22:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save lillyfreitas/3a8cb1b67c19887baa027ab1a62473b3 to your computer and use it in GitHub Desktop.
Save lillyfreitas/3a8cb1b67c19887baa027ab1a62473b3 to your computer and use it in GitHub Desktop.
Estimar tamanho ocupado por uma pasta
# Fonte: https://unix.stackexchange.com/a/185765
# du
# comando para estimar o espaço usado
# -s
# exibe apenas um total para cada argumento
# -h
# formato amigável (ex: 1K, 234M, 2G)
# -c
# total de mais de uma pasta/subpastas
du -shc nomepasta
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment