6 lines
97 B
Bash
6 lines
97 B
Bash
#!/bin/sh
|
|
|
|
echo Building manager with ...
|
|
echo gcc manager.c -o manager
|
|
gcc manager.c -o manager
|