Skip to content

Instantly share code, notes, and snippets.

@AlexBaranowski
Created December 29, 2019 18:59
Show Gist options
  • Save AlexBaranowski/79abce8b41495bf671bf4ed325c2dfcb to your computer and use it in GitHub Desktop.
Save AlexBaranowski/79abce8b41495bf671bf4ed325c2dfcb to your computer and use it in GitHub Desktop.
# simple script to remove all libvirt images
for i in $(sudo virsh vol-list --pool default | awk '{print $1}'); do sudo virsh vol-delete --pool default $i; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment