7 lines
63 B
Bash
7 lines
63 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
# Start the server
|
||
|
echo Start the server
|
||
|
exec $@
|
||
|
|