pango: Update from 1.40.1 to 1.40.2
[termux-packages] / packages / termux-tools / su
CommitLineData
5c7e02d7
FF
1#!/bin/sh
2
a5421dbd
FF
3for p in /system/xbin/su /su/bin/su
4do
5 if [ -x $p ]; then
6 # The su tool may require programs
7 # from /system/bin in path:
8 PATH=/system/bin:$PATH exec $p $@
9 fi
10done
11
12echo "There is no su program on this device. Termux"
13echo "does not supply tools for rooting, see e.g."
14echo "http://www.androidcentral.com/root for"
15echo "information about rooting Android."
16exit 1