mirror of
https://github.com/proot-me/proot.git
synced 2025-08-28 16:43:49 +02:00
5 lines
191 B
Bash
5 lines
191 B
Bash
if [ -z `which sh` ] || [ -z `which kill` ] || [ -z `which grep` ] || [ -z `which cut` ]; then
|
|
exit 125;
|
|
fi
|
|
|
|
${PROOT} sh -c 'kill -15 $(grep TracerPid /proc/self/status | cut -f 2 -d :)'
|