1 2 3 4 5 6 7 8 9 10 11 12 13
#!/bin/sh file=$1 if ! igawk -f main.awk $file; then echo parse failed; exit 1; fi echo compiling vluke gcc -Wall -g -o vluke parser.c vluke.c util.c echo done.