Files
secondo/bin/StartMonitor
2026-01-23 17:03:45 +08:00

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 $?