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
|
|
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
|