14 lines
209 B
Bash
Executable File
14 lines
209 B
Bash
Executable File
#!/bin/bash
|
|
echo "### Compiling..."
|
|
gcc helloworld.c -o helloworld
|
|
gcc echo.c -o echo
|
|
|
|
echo "### Hello World:"
|
|
./helloworld
|
|
|
|
echo "### Echo:"
|
|
./echo Word!
|
|
|
|
echo "### Cleaning up..."
|
|
rm helloworld
|
|
rm echo |