Created
January 14, 2015 15:25
-
-
Save frgaudet/bf2a4c7de7baa49bff46 to your computer and use it in GitHub Desktop.
This file contains 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
#!/bin/bash | |
TARGET="~/temp" | |
listvms=`VBoxManage list runningvms | awk '{ print $2 }'` | |
IFS=$(echo -en "\n\b") | |
for vm in $listvms | |
do | |
date=`date +"%Y%m%d-%N"` | |
VBoxManage controlvm $vm screenshotpng $TARGET/$date.png | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment