CS3413/Lab1/compile_script.sh

5 lines
105 B
Bash
Raw Normal View History

2023-09-15 23:55:52 -03:00
#!/bin/bash
gcc -Wall -Werror test.c
./a.out < input.txt > output.txt
diff correct_output.txt output.txt