Created
November 5, 2023 12:23
-
-
Save k0z4c/02cf1b4c6f310ea7092199625198242b to your computer and use it in GitHub Desktop.
list all snapshots for every vm
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| for id in $(qm list | awk '{ print $1 }' | tail -n +2); do | |
| qm config $id | grep '^name:' | awk '{print $2}' | |
| qm listsnapshot $id; | |
| done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment