termux-tools: New 0.20 version with a su script
[termux-packages] / packages / termux-tools / su
CommitLineData
5c7e02d7
FF
1#!/bin/sh
2
3if [ -x /system/xbin/su ]; then
4 /system/xbin/su $@
5else
6 echo "There is no su program on this device. Termux"
7 echo "does not supply tools for rooting, see e.g."
8 echo "http://www.androidcentral.com/root for"
9 echo "information about rooting Android."
10 exit 1
11fi