Skip to content

Instantly share code, notes, and snippets.

@jnm
Last active December 20, 2015 00:19
Show Gist options
  • Save jnm/6040958 to your computer and use it in GitHub Desktop.
Save jnm/6040958 to your computer and use it in GitHub Desktop.
Show total vzdump backup disk usage per container/virtual machine
for i in $(ls -1 vzdump* | cut -f -3 -d - | sort | uniq); do echo -n $(du -c --block-size=1G $(eval echo '$i*') | tail -n 1 | cut -f 1); echo -e "\t$i"; done | sort -n
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment