mirror of
https://github.com/proot-me/proot.git
synced 2025-08-28 16:43:49 +02:00
6 lines
126 B
Bash
6 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$'
|
|
|