When backgrounding a Unix command process, get into the habit of redirecting all standard I/O: stdin, stdout, and stderr. Thus, in bsh, you would do like: dsmc schedule > /dev/null 2>&1 < /dev/null (Redirect Stdout to some file if you want to inspect miscellaneous process messages.) That will help avoid some anomalous behavior.
Richard Sims
