#!/data/data/com.termux/files/usr/bin/bash
#
# Substitution for sudo
if [ "$(whoami)" != 'root' ]
then
echo "$@" | tsu
else
"$@"
fi