12 lines
275 B
Bash
Executable File
12 lines
275 B
Bash
Executable File
#!/bin/sh
|
|
|
|
if [ -x /system/xbin/su ]; then
|
|
/system/xbin/su $@
|
|
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
|