You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
459 B
18 lines
459 B
#!/data/data/com.termux/files/usr/bin/sh
|
|
|
|
unset LD_LIBRARY_PATH
|
|
|
|
for p in /system/xbin/su /su/bin/su /sbin/su
|
|
do
|
|
if [ -x $p ]; then
|
|
# The su tool may require programs in PATH:
|
|
PATH=/sbin/su:/su/bin:/su/xbin:/system/bin:/system/xbin \
|
|
exec $p $@
|
|
fi
|
|
done
|
|
|
|
echo "No su program found on this device. Termux"
|
|
echo "does not supply tools for rooting, see e.g."
|
|
echo "http://www.androidcentral.com/root for"
|
|
echo "information about rooting Android."
|
|
exit 1
|
|
|