CS3413/Lab1/compile_script.sh
2023-09-15 23:55:52 -03:00

5 lines
105 B
Bash

#!/bin/bash
gcc -Wall -Werror test.c
./a.out < input.txt > output.txt
diff correct_output.txt output.txt