Created
July 5, 2018 19:36
-
-
Save lcomino/9d5960085e6bfe5c3ce15ec424d65c16 to your computer and use it in GitHub Desktop.
Retorna o tamanho total dos arquivos
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
du -ch $files | tail -1 | cut -f 1 | |
ex: du -ch *.zip | tail -1 | cut -f 1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment