I'm trying to write a quick-and-dirty shell script daemon to run on a home router that has a busybox shell, which doesn't support disown. Is there any way to do either of the following?
- Run a command like
command &and then disown it once it's in the background. - Run a command "directly" in the background (i.e., not using
&).