Run program in background.

2004-10-03 Thread Moises Deangelo
Please I did a program in C. That program needs to run for a long time, because of this it is ideal that he works on background. I do not have been managing do that. is there some command? Any lib, anything I thank the help. Moises Deangelo. -- Unsubscribe info: http://cygwin.com/ml/

RE: Run program in background.

2004-10-04 Thread Buchbinder, Barry (NIH/NIAID)
At Sunday, October 03, 2004 6:24 PM, Moises Deangelo wrote: > Please > > I did a program in C. > > That program needs to run for a long time, because of this it is ideal > that he works on background. > > I do not have been managing do that. > > is there some command? Any lib, anything > > I

Re: Run program in background.

2004-10-05 Thread Brian Dessent
Moises Deangelo wrote: > I did a program in C. > > That program needs to run for a long time, because of this it is ideal > that he works on background. > > I do not have been managing do that. > > is there some command? Any lib, anything > > I thank the help. Your question is not clear. "R

RE: Run program in background.

2004-10-05 Thread Reid Thompson
Brian Dessent wrote: > > If you just want your program to simply run in the > background, launch it with a "&" at the end of the command > from the shell. However, if it expects to use stdout, stdin, > or stderr, it will stop -- so these must all be redirected to files > or pipes. not exactly c

Re: Run program in background.

2004-10-05 Thread Brian Dessent
Reid Thompson wrote: > > If you just want your program to simply run in the > > background, launch it with a "&" at the end of the command > > from the shell. However, if it expects to use stdout, stdin, > > or stderr, it will stop -- so these must all be redirected to files > > or pipes. > > no