You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#!/bin/bash
|
|
|
|
set -x
|
|
read -r -p "Are you sure? [y/N] " response
|
|
case "$response" in
|
|
[yY][eE][sS]|[yY]|[oO])
|
|
rm -rf backups/*
|
|
rm -rf database/*
|
|
rm -rf wwwfolder/*
|
|
;;
|
|
*)
|
|
return
|
|
;;
|
|
esac
|
|
|