dustin
/
zdotdir
Archived
1
0
Fork 0
This repository has been archived on 2023-11-14. You can view files and clone it, but cannot push or open issues/pull-requests.
zdotdir/functions/@testvm::delete

9 lines
169 B
Bash

# vim: set ft=zsh sw=4 ts=4 sts=4 et :
@testvm::delete() {
virsh destroy "${1}" || :
virsh undefine "${1}" --remove-all-storage --nvram
}
@testvm::delete "$@"