4th September, 2013

Check status of all your configured Vagrant boxes

find . -name ".vagrant" -type d -exec /bin/bash -c 'echo -e "\n\n\n{}" | sed s/\.vagrant$//; cd {}; vagrant status ' \;

In case the formatting breaks

find . -name ".vagrant" -type d -exec /bin/bash -c 'echo -e "\n\n\n{}" | sed s/\.vagrant$//; cd {}; vagrant status ' \;

 

The opinions expressed here are my own and not those of my employer.