hello, please tell me how to pause running process in terminal and
resume after some time.
|On Tue, Feb 8, 2011 at 7:57 PM, SUJIT KUMAR <suji...@gmail.com> wrote:
|hello, please tell me how to pause running process in terminal and
|resume after some time.
\--
To Stop
kill -s STOP [pid]
To Resume
kill -s CONT [pid]
Regards
AJ