4 lines
80 B
Bash
4 lines
80 B
Bash
|
#!/bin/bash
|
||
|
gcc -o app.bin ./app.c
|
||
|
gcc -o test.bin ./exec.c
|
||
|
./test.bin ./app.bin
|