DF-0874 / build.sh
#!/bin/sh # DF-0874 build -- compile the readdir trigger + harness as the unprivileged user. # Run inside the guest (as maxx) or via: vm.sh run_user 'cd poc/DF-0874 && ./build.sh' set -e cd "$(dirname "$0")" cc -O -o trigger trigger.c cc -O2 -o harness harness.c echo "BUILD_OK" ls -l trigger harness |