You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
293 B
Plaintext
12 lines
293 B
Plaintext
11 years ago
|
#!/usr/bin/env bash
|
||
|
|
||
|
function gvm_implode() {
|
||
|
read -p "Are you sure? [Y/n] " -n 1 -r
|
||
|
echo
|
||
|
if [[ ! $REPLY =~ ^[Yy]$ ]]; then
|
||
|
display_message "Action cancelled"
|
||
|
else
|
||
|
(rm -rf "$GVM_ROOT" && display_message "GVM successfully removed") || display_error "Failed to uninstall gvm"
|
||
|
fi
|
||
|
}
|