65 lines
693 B
Plaintext
65 lines
693 B
Plaintext
|
|
#!/bin/bash
|
||
|
|
clear
|
||
|
|
echo -ne "
|
||
|
|
CLI TOOLS
|
||
|
|
---------------------------------
|
||
|
|
1) HTOP [TASK MANAGER]
|
||
|
|
2) YTREE [FILE MANAGER]
|
||
|
|
3) NANO [TEXT EDITOR]
|
||
|
|
4) HEXEDIT [HEX EDITOR]
|
||
|
|
5) IFTOP [NETWORK TRAFFIC VEIWER]
|
||
|
|
6) LINKS [WEB BROWSER]
|
||
|
|
7) IRSSI [IRC CLIENT]
|
||
|
|
9) INSTALL TOOLS
|
||
|
|
0) EXIT
|
||
|
|
ENTER NUMBER: "
|
||
|
|
read -r x
|
||
|
|
case $x in
|
||
|
|
1)
|
||
|
|
htop
|
||
|
|
./tools
|
||
|
|
;;
|
||
|
|
2)
|
||
|
|
ytree
|
||
|
|
./tools
|
||
|
|
;;
|
||
|
|
3)
|
||
|
|
nano
|
||
|
|
./tools
|
||
|
|
;;
|
||
|
|
4)
|
||
|
|
hexedit
|
||
|
|
./tools
|
||
|
|
;;
|
||
|
|
5)
|
||
|
|
sudo iftop
|
||
|
|
./tools
|
||
|
|
;;
|
||
|
|
6)
|
||
|
|
links
|
||
|
|
./tools
|
||
|
|
;;
|
||
|
|
7)
|
||
|
|
irssi
|
||
|
|
./tools
|
||
|
|
;;
|
||
|
|
9)
|
||
|
|
clear
|
||
|
|
echo 'INSTALLING TOOLS...'
|
||
|
|
sudo apt update; sudo apt install htop ytree nano hexedit iftop links irssi
|
||
|
|
echo 'DONE.'
|
||
|
|
read -n1
|
||
|
|
./tools
|
||
|
|
;;
|
||
|
|
0)
|
||
|
|
clear
|
||
|
|
exit
|
||
|
|
;;
|
||
|
|
*)
|
||
|
|
clear
|
||
|
|
echo "NO OPTION"
|
||
|
|
./tools
|
||
|
|
;;
|
||
|
|
esac
|
||
|
|
|