blob: 754d27360ec5e9bdd69ec9fd76011a4ae1cd8019 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#!/bin/bash
# $1 is an optional argument specifying the location of the repositories directory.
# Defaults to /home/git/repositories if not provided
home_dir="/home/git/repositories"
src=${1:-"$home_dir"}
echo "Danger!!! Data Loss"
while true; do
read -p "Do you wish to delete all directories from $home_dir/ (y/n) ?: " yn
case $yn in
[Yy]* ) sh -c "find $home_dir/. -maxdepth 1 -not -name '.' | xargs rm -rf"; break;;
[Nn]* ) exit;;
* ) echo "Please answer yes or no.";;
esac
done
|