-
Notifications
You must be signed in to change notification settings - Fork 2
/
info.sh
40 lines (40 loc) · 813 Bytes
/
info.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
36
37
38
39
40
clear
echo !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
echo
echo " WELCOME TO SYSTEM INFORMATION UTILITY created by Md Kamran Kausar "
echo
echo !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
echo
echo Please Enter A Choice !!
echo
echo "1 - Basic System Overview "
echo "2 - Cpu information "
echo "3 - Memory /RAM information "
echo "4 - Motherboard/BIOS information "
echo "5 - Hard Drive information "
echo "6 - Filesystem information"
echo "7 - Network information"
echo "8 - Other information"
echo
echo
echo
echo Or Press Any Other Key to Exit............
read a
case $a in
1) sh basic.sh
;;
2) sh cpu.sh
;;
3) sh mem.sh
;;
4) sh mb.sh
;;
5) sh hard.sh
;;
6) sh fs.sh
;;
7) sh net.sh
;;
8) sh o.sh
;;
esac