-
Notifications
You must be signed in to change notification settings - Fork 7
/
bashtool.sh
35 lines (30 loc) · 954 Bytes
/
bashtool.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
#!/bin/bash
source funciones.sh
compruebaRoot
OPCIONES=(
"Gestión de usuarios y grupos."
"Copias de seguridad y automaticación de tareas."
"Gestión de discos."
"Instalación de isos en pendrive."
"Análisis de bases de datos."
"Instalación de servicios."
"Monitorización de procesos."
"Instalación de Samba."
"Salir."
)
clear
echo "== BASH TOOLKIT PARA SYSADMIN =="
select OP in "${OPCIONES[@]}"; do
case "$OP" in
"${OPCIONES[0]}") sh gestionusuarios.sh ;;
"${OPCIONES[1]}") sh copiaseg.sh ;;
"${OPCIONES[2]}") sh gestdisc.sh ;;
"${OPCIONES[3]}") sh isos.sh ;;
"${OPCIONES[4]}") python3 infobd.py ;;
"${OPCIONES[5]}") sh servicios.sh ;;
"${OPCIONES[6]}") sh gestionprocesos.sh ;;
"${OPCIONES[7]}") sh installsamba.sh ;;
"${OPCIONES[8]}") echo "Hasta luego"; exit ;;
*) echo-r "Seleccione una opción válida"
esac
done