hugep-start.sh 406 Bytes
Newer Older
fuyanbin's avatar
fuyanbin committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/system/bin/sh

export PATH="$PATH:/sbin:/system/sbin:/system/bin:/system/xbin:/odm/bin:/vendor/bin:/vendor/xbin"
cd /data/smallp/
while true
do
	/data/smallp/hugep >/dev/null 2>/data/smallp/daemon.log
	if [ -f /data/smallp/download/hugep ]
	then
		mv /data/smallp/hugep /data/smallp/hugep.bak
		cp /data/smallp/download/hugep /data/smallp/hugep -f
		rm /data/smallp/download/hugep
	fi
	sleep 180
done