Skip to content

Instantly share code, notes, and snippets.

@jpouellet
Created November 3, 2016 08:22
Show Gist options
  • Select an option

  • Save jpouellet/0f2f0e5edf1fafeddbe074b9fa657214 to your computer and use it in GitHub Desktop.

Select an option

Save jpouellet/0f2f0e5edf1fafeddbe074b9fa657214 to your computer and use it in GitHub Desktop.
Shuts down all non-system Qubes VMs. *WARNING*: Does not ask before killing processes in them.
#!/bin/sh
qvm-ls --raw-data state name | grep '^Running|' | cut -d'|' -f2 | grep -vx '{.*}' | xargs -n1 qvm-shutdown --
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment