annotate oscgroups/run_server.sh @ 101:52e44ee1c791
tip master
enabled all scores in autostart script
author |
Rob Canning <rc@kiben.net> |
date |
Tue, 21 Apr 2015 16:20:57 +0100 |
parents |
0ae87af84e2f |
children |
|
rev |
line source |
rob@76
|
1 #!/bin/sh
|
rob@76
|
2 # a simple script to run the server in the background
|
rob@76
|
3 # nohup means that the server will keep running when you log out
|
rob@76
|
4 # you will need to use the ps and kill commands to find and kill
|
rob@76
|
5 # the server if you need to
|
rob@76
|
6 # a better solution is the OscGroupServerStartStop script
|
rob@76
|
7 nohup ./bin/OscGroupServer &
|