8 lines
99 B
Bash
8 lines
99 B
Bash
#!/bin/bash
|
|
|
|
set -xe
|
|
|
|
gcc -g -ansi -Wall -Wextra -Wpedantic -Werror -o xighlight xighlight.c
|
|
|
|
exit
|