-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathinstall
More file actions
32 lines (31 loc) · 668 Bytes
/
Copy pathinstall
File metadata and controls
32 lines (31 loc) · 668 Bytes
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
# Tool Name :- IP-Tracer
# Author :- Rajkumar Dusad
# Date :- 5/8/2018
# Powered By :- Aex Software's
if [ -e /usr/lib/sudo ];then
if [ ! -e /usr/bin/php ];then
sudo apt-get update
sudo apt-get upgrade -y
sudo apt-get install php -y
sudo apt-get install php5 -y
fi
else
if [ -d /usr/bin ];then
if [ ! -e /usr/bin/php ];then
apt-get update
apt -get upgrade -y
apt-get install php -y
apt-get install php5 -y
fi
fi
fi
if [ ! -d /usr/bin ];then
if [ ! -e /data/data/com.termux/files/usr/bin/php ];then
pkg update
pkg upgrade -y
pkg install php -y
pkg install php5 -y
fi
fi
php .setup.php
exit