Skip to content

Instantly share code, notes, and snippets.

@wiedi
Created February 9, 2015 13:01
Show Gist options
  • Save wiedi/ad53414a1d4b6032cfb2 to your computer and use it in GitHub Desktop.
Save wiedi/ad53414a1d4b6032cfb2 to your computer and use it in GitHub Desktop.
vmdiff.sh
vmdiff() {
if [ $# -ne 1 ]; then
echo "vmdiff <uuid>"
return
fi
VM_ZFS=zones/$1
zfs diff $(zfs get -Ho value origin $VM_ZFS) $VM_ZFS
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment