-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathinstall.sh
40 lines (39 loc) · 1.38 KB
/
install.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
#This Script id created by TermuxProfessor
#Don't copy or modify code Read License First
#Subscribe me on YouTube www.youtube.com/c/TermuxProfessor
clear
echo ""
echo -e " \e[1;91m__\e[1;92m,-\e[1;93m////\e[1;92m, "
echo -e " \e[1;91m/__\e[1;92m) (\e[1;93mo\e[1;92m) ) "
echo -e " /.,--. \ "
echo -e " /,-'/.\. \ "
echo -e " \. \.\ \ \ "
echo -e " \. \\\ \ / "
echo -e " \e[1;93m=====\e[1;91m((\e[1;93m=\e[1;91m((\e[1;92m\\e[1;93m=====.=== "
echo -e " \e[1;92m \ \ \.\ "
echo -e " \ \ \' "
echo -e " \ \' "
echo -e " \ \ "
echo -e " '-' \e[1;97m "
echo ""
echo -e "\e[1;91m [+] YouTube: \e[1;92mTermuxProfessor"
echo -e "\e[1;91m [+] Github: \e[1;92mtermuxprofessor\e[1;97m"
echo ""
read -p " Does you want to install Parrot Shell in Termux?(Yes/No) : " input
if [[ $input == Yes || $input == yes || $input == y || $input == Y ]]; then
clear
cp bash.bashrc $HOME
cd /data/data/com.termux/files/usr/etc
rm -rf motd
rm -rf bash.bashrc
cd $HOME
mv bash.bashrc /data/data/com.termux/files/usr/etc
echo -e "\e[1;91mSuccessfully Installed"
echo -e "Restart Termux"
exit 3
elif [[ $input == No || $input == no || $input == n || $input == N ]]; then
exit 2
else
echo -e "\e[1;91mInvalid Option"
exit 1
fi