2020-07-31 17:49:59 +07:00
|
|
|
#!/bin/bash
|
|
|
|
|
2020-08-02 11:43:28 +07:00
|
|
|
# echo "compile the program.c file..."
|
|
|
|
# gcc work1/main.c -o program
|
|
|
|
# echo "run the program..."
|
|
|
|
# ./program
|
|
|
|
|
2020-08-02 14:12:54 +07:00
|
|
|
rm -r single.bin
|
|
|
|
|
|
|
|
gcc work1/single.c -o single.bin && ./single.bin
|