Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save brianyoungblood/ba080471843f9d4f61bae5b3f8852dcb to your computer and use it in GitHub Desktop.
Save brianyoungblood/ba080471843f9d4f61bae5b3f8852dcb to your computer and use it in GitHub Desktop.
get gzip file size in GB, if it was to be uncompressed
gzip -dc thefile.gz | wc -c | awk '{$1=$1/1024/1024/1024; print $1,"GB";}'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment