filename changeover

This commit is contained in:
2019-01-27 12:54:38 -06:00
parent 4efc3f0bc8
commit b17528a3fd
7 changed files with 44 additions and 22 deletions

View File

@@ -16,6 +16,17 @@ EXIT1() {
exit 0
}
if type apt &>/dev/null; then
ATYPE="apt"
elif type apt-get &>/dev/null; then
ATYPE="apt-get"
elif type yum &>/dev/null; then
ATYPE="yum"
else
ATYPE="unknown"
exit 1
fi
declare -A abet
abet[0]="a"
abet[1]="b"