1 2 3 4 5 6 7 8
#!/bin/sh # build.sh -- compile the userspace harness proving the iscsi_r2t OOB read. set -e cd "$(dirname "$0")" echo "+ cc -O2 -Wall -o harness harness.c" cc -O2 -Wall -o harness harness.c echo "+ build ok" ls -l harness