* Tom Reed <t...@dkinbox.com> [23-05/14=Sun 14:21 +0800]:
> I have a long run shell script [...].  Currently the script
> is running in front-end in shell.  How can I run it with
> the backend way? Can I register it as a system service?

Just run 'myScript&' (the trailing '&' tells the shell to
run it in the background) if there is no terminal output
from the running script (terminal output will pause it); if
there is, enclose the content of the script in redirection of
standard output and standard error to a log file, or code a
system service as Jeremy Ardley suggests in a different reply.

Reply via email to