Path: utzoo!utgpu!utstat!jarvis.csri.toronto.edu!mailrus!tut.cis.ohio-state.edu!ucbvax!decwrl!decvax!tektronix!ozvax!tekcsc!jeff From: jeff@tekcsc.MKT.TEK.COM (Jeff Beadles) Newsgroups: comp.unix.questions Subject: Re: SUSPENDED PROGRAMS Message-ID: <165@tekcsc.MKT.TEK.COM> Date: 12 Feb 89 00:18:44 GMT References: <19070@agate.BERKELEY.EDU> <8754@alice.UUCP> <462@oglvee.UUCP> <487@maxim.ERBE.SE> <8872@alice.UUCP> <316@dcs.UUCP> <9606@smoke.BRL.MIL> <248@ibd.BRL.MIL> Reply-To: jeff@tekcsc.MKT.TEK.COM (Jeff Beadles) Organization: Tektronix, Inc. Wilsonville, Or. Lines: 20 In article <248@ibd.BRL.MIL> heilpern@brl.arpa (Mark A. Heilpern (IBD) ) writes: > >A while back I cam across the 4.3BSD ability to 'suspend' a running process >by hitting ^Z. (I think this is a CSH feature) (bug??) This is a feature. It's called Job Control. Not all C-Shell's have it. >Is there any way to resume the process, either by letting it continue to >run in the background or foreground? Sure is. Use "fg" to resume in the foreground, and "bg" to continue in the background. You may also use "jobs" to get a list of stopped jobs. Fg/bg also take an arguement to them. Use "fg %1" to bring job #1 to the foreground. See the manual in fg(1csh), bg(1csh), jobs(1csh), and csh(1csh) for more information. Jeff Beadles jeff@tekcsc.MKT.TEK.COM