6 lines
113 B
Plaintext
6 lines
113 B
Plaintext
|
#!/bin/bash
|
||
|
|
||
|
echo "compile the program.c file..."
|
||
|
gcc work1/main.c -o program
|
||
|
echo "run the program..."
|
||
|
./program
|