Last Updated: May 14, 2018
·
16.45K
· washingtoneg

Kill all running Vagrant VMs

In case you want to indiscriminately destroy all of the running Vagrant VMs on your machine, you can run the following:

for i in `vagrant global-status | grep virtualbox | awk '{ print $1 }'` ; do vagrant destroy $i ; done