mirror of
https://github.com/termux/proot.git
synced 2024-11-11 13:49:26 +00:00
7 lines
126 B
Bash
7 lines
126 B
Bash
if [ -z `which pwd` ] || [ -z `which grep` ]; then
|
|
exit 125;
|
|
fi
|
|
|
|
${PROOT} -w /tmp/a -m /etc:/tmp/a pwd | grep '^/tmp/a$'
|
|
|