13 lines
304 B
Plaintext
13 lines
304 B
Plaintext
# Startup script for the Secondo monitor application
|
|
|
|
nohup SecondoMonitor -s $* </dev/null &
|
|
pid=$!
|
|
msg="\n SecondoMonitor started in background with process id = $pid.\n"
|
|
echo -e $msg >> nohup.out
|
|
date >> nohup.out
|
|
echo -e $msg
|
|
echo -e "Use kill -SIGTERM $pid for shutdown\n"
|
|
exit $?
|
|
|
|
|