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.
31 lines
238 B
31 lines
238 B
2 years ago
|
#!/bin/bash
|
||
|
source ./O.sh
|
||
|
while :
|
||
|
do
|
||
|
list
|
||
|
read -p "请输入您的选项:" num
|
||
|
case $num in
|
||
|
a)
|
||
|
mem
|
||
|
;;
|
||
|
b)
|
||
|
disk
|
||
|
;;
|
||
|
c)
|
||
|
system_info
|
||
|
;;
|
||
|
d)
|
||
|
cpu_info
|
||
|
;;
|
||
|
e)
|
||
|
install_yum
|
||
|
;;
|
||
|
f)
|
||
|
stop_firewalld
|
||
|
;;
|
||
|
q)
|
||
|
exit
|
||
|
;;
|
||
|
esac
|
||
|
done
|