4 lines
88 B
Bash
4 lines
88 B
Bash
|
#!/bin/sh
|
||
|
cc builder.c -Wall -Wextra -Os -s -pedantic -obuilder
|
||
|
./builder && rm builder
|