mirror of
https://github.com/termux/proot.git
synced 2024-11-11 13:49:26 +00:00
6 lines
123 B
Bash
6 lines
123 B
Bash
if [ ! -x /bin/sh ] || [ -z `which grep` ]; then
|
|
exit 125;
|
|
fi
|
|
|
|
${PROOT} -w /tmp /bin/sh -c 'echo $PWD' | grep '^/tmp$'
|