Skip to content

Instantly share code, notes, and snippets.

@valtoni
Created August 14, 2019 19:01
Show Gist options
  • Save valtoni/7073ef4079d8271e7e5a324f054cab51 to your computer and use it in GitHub Desktop.
Save valtoni/7073ef4079d8271e7e5a324f054cab51 to your computer and use it in GitHub Desktop.
Display in kibibytes the sum of all files in current directory
ls -lap | grep -v / | awk '{
size = size + $5;
}
END {
print size/1024
}'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment