Skip to content

Instantly share code, notes, and snippets.

@skyhisi
Created August 6, 2019 12:15
Show Gist options
  • Save skyhisi/b616fc59dc1bdab37f742097cfea68f0 to your computer and use it in GitHub Desktop.
Save skyhisi/b616fc59dc1bdab37f742097cfea68f0 to your computer and use it in GitHub Desktop.
Virtual Box - Compact all disks
#!/bin/bash
for ID in $(vboxmanage list hdds | grep '^UUID:' | cut -c14-)
do
vboxmanage modifyhd $ID --compact
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment