13 lines
360 B
Plaintext
Raw Normal View History

2016-03-23 12:45:54 -04:00
#!/bin/sh
if [ -x /system/xbin/su ]; then
# The su tool may require programs from /system/bin in path:
PATH=/system/bin:$PATH /system/xbin/su $@
2016-03-23 12:45:54 -04:00
else
echo "There is no su program 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
fi