9 lines
155 B
Bash
Executable file
9 lines
155 B
Bash
Executable file
#!/bin/bash
|
|
|
|
|
|
set -e
|
|
|
|
|
|
SCRIPT_PATH=$(realpath $0)
|
|
SCRIPT_DIR=$(dirname $SCRIPT_PATH)
|
|
exec unshare --mount --map-root-user "$SCRIPT_DIR/sandbox_fs.py" "$@"
|